[Answered ]-Python oauth2 – getting access token

2πŸ‘

If I understand correctly you now have the access token?

To make requests to the API endpoint follow the same procedure but use the access token (as the oauth_token parameter) and in the req.sign method. Direct your request towards the API URL aswell, of course πŸ™‚

And you don’t need the oauth_verifier once you have the access token.

πŸ‘€Jon Nylander

Leave a comment