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
Right now, the auth code PKCE flow is using a code verifier generated when creating the authorization url.
This is fine, however I want to be able to use another OAuth2Session instance when requesting the token.
To do so, I need to be able to get the code verifier that was generated, and provide it as a parameter to the fetch_token.
I can manage for now by accessing the private _code_verifier attribute, but I would like to rely on an interface that is not supposed to change without a new major release.
Thanks again
The text was updated successfully, but these errors were encountered:
I also meet this same situation.
In webapplication flow seems use another OAuth2Session instance when requesting the token is required.
Hope code verifier can provided it as a parameter to the fetch_token.
Right now, the auth code PKCE flow is using a code verifier generated when creating the authorization url.
This is fine, however I want to be able to use another OAuth2Session instance when requesting the token.
To do so, I need to be able to get the code verifier that was generated, and provide it as a parameter to the fetch_token.
I can manage for now by accessing the private
_code_verifier
attribute, but I would like to rely on an interface that is not supposed to change without a new major release.Thanks again
The text was updated successfully, but these errors were encountered: