Hi,
I have been trying to log into my third party app and have tried many different ways.
I keep getting an error as the attachment saying email/username missing
In the guide it says I need to create a Body with A JSON document with the user’s fields namely:
Parameters - Pass the username
and password
in URL parameters. It should be encoded JSON.
Any help will be greatly appreciated.
Thank you for an amazing app so far. I have been loving every minute of it. Although I get stuck here and there.
The API doc you linked instructs you to pass the username and password as query parameters. So, you should include them as part of the URL, e.g. if my username is demo
and password is secret
, I would call the URL:
https://parseapi.back4app.com/login?username=demo&password=secret
So as a formula, that’d be
"https://parseapi.back4app.com/login?username=" + pageVars.credentials.username + "&password=" + pageVars.credentials.password
Since you are doing a GET request, there’s no need to bother with the Request body / Request body type properties.