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
This adds parameters necessary for PKCE (Proof Key for Code Exchange) during OAuth authorization flow (see https://docs.joinmastodon.org/spec/oauth/#pkce). Specifically:
- adds parameters state, codeChallenge, codeChallengeMethod to getOAuthUrl()
- adds parameter codeVerifier to getUserAccessTokenWithAuthorizationCodeGrant()
- same for Rx methods
- modifies Kotlin+Java samples to make use of these parameters
ClosesPattaFeuFeu#531.
With
4.3.0
, PKCE parameters have been added to Mastodon's OAuth methods. Specifically:/oauth/authorize
state
code_challenge
code_challenge_method
/oauth/token
code_verifier
These parameters should be supported.
The text was updated successfully, but these errors were encountered: