[31.03 07:56] Sophie Türling (Gast)
And here's what James told me about these Params Auth, Header Auth...
{"username":"james","password":"abc123"}https://api.example.com/login?username=james&password=abc123And if I understand correct, the fields are just for some more flexibility, as some apps have username and other apps email or something like that and we can define the fields then
[30.03 13:36] James Weber
The other options refer to how the API requires the Authorisation data to be sent to them. For instance:
{"username":"james","password":"abc123"}https://api.example.com/login?username=james&password=abc123[30.03 13:39] James Weber
The Session Auth setup also allows for more complicated setups, like declaring the fields client_id and username above, and then sending the username field to the API as "{{fields.client_id}}+{{fields.username}}" which would then send the username as both of those values concatenated with a plus sign between them