You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Also everything works fine(access_token and refresh_tokens are retrieved) with the above, but there is an issue. When the access_token expires, we get a crash as provided in the screen:
The text was updated successfully, but these errors were encountered:
This does not seem like correct OAuth2 instead the key/secret are used as username/password in a basic auth. This is not supported since it's not OAuth2.
In oauth2, to retrieve the access_token from server don't we have to use Basic authorization first. After that bearer token is send for each api. What else would you do to login a user?
I need to get Oauth token with basic authrization. Right now I have to manually add header with base 64 of server_clientid:server_secret as follows:
Is there some proper way to do this?
Also everything works fine(access_token and refresh_tokens are retrieved) with the above, but there is an issue. When the access_token expires, we get a crash as provided in the screen:
The text was updated successfully, but these errors were encountered: