I am building an application with Upwork api.
Now I do the first thing to get a grant code to exchange access token.
The api documentation says:
======
Endpoint GET /ab/account-security/oauth2/authorize Parameters:
- response_type
required, string The corresponding grant type. Use code for Authorization Code Grant.
- client_id
required, string Your Client ID.
- redirect_uri
required, string
Redirect URI, must be equal or similar to the callback specified in the key settings.
======
I use this url to get the code but always response failed
the response is:
{ "1": { "str": "Authentication failed" } }
I tried using the redirect URL with encoding and without encoding, still get failed.
Can anyone help me?
Thanks.