I'm trying to create a client API connection flow. The information I have to create this feed is:
-the root of the API: http s://mywebsite.com/
-user: "usertest"
-password: "mypassword"
-my endpoint for authentification: http s://mywebsite.com/authentication
And the information that the token returned during authentication is sent in JSON format.
{
“BearerToken”: “{tokenValue}”
}
I have tried several setups and will start from scratch. I'm really new in development and trying to make this connection to my client API properly.
My flow is very simple:
-I have one timestamp for start the flow
-I have a function that sends my credentials in the header
-A post request to the URL: https://mywebsite.com/authentication
-for the moment, one debug for see the status.
I have tried a lot of configuration but with no luck. I would really be grateful if someone would make an example of a connection
I remain really available to follow your directions.
Thanks again in advance
Alexandre