Home > Mobile >  OAuth2 authorization to 'My Anime List' not working
OAuth2 authorization to 'My Anime List' not working

Time:10-25

I am trying to authenticate a "My Anime List" user using Oauth2 (following this enter image description here

and here is the reply:

enter image description here

Edit 2:

Hard coding the code challenge/verifier to 128 times 'A' (AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA) doesn't change the behavior either:

CodePudding user response:

When you include the redirect_uri in the authorization request you also need to include it in the /token request. Maybe it't that.

  • Related