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
We can specify the state variable for example in oauth2.auth_url. But it is not obvious to be how we get it back.
Looking into the code behind oauth2.get_token_p we can see that the state variable is picked up when there is a incoming code request. And it is passed on to the POST call to the token_url. But the state is not included in the POST response (at least not in the tests I've made so far).
How exactly are we suppose to get the specific state value back again?
The text was updated successfully, but these errors were encountered:
We can specify the
state
variable for example inoauth2.auth_url
. But it is not obvious to be how we get it back.Looking into the code behind
oauth2.get_token_p
we can see that thestate
variable is picked up when there is a incoming code request. And it is passed on to the POST call to thetoken_url
. But thestate
is not included in the POST response (at least not in the tests I've made so far).How exactly are we suppose to get the specific
state
value back again?The text was updated successfully, but these errors were encountered: