From cbeb57504d1bea029ebc0e54a74ab096fc50d906 Mon Sep 17 00:00:00 2001 From: pilcrow Date: Sun, 15 Dec 2024 20:17:21 +0900 Subject: [PATCH] fix myanimelist code challenge method (#226) --- src/providers/myanimelist.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/providers/myanimelist.ts b/src/providers/myanimelist.ts index 960bc1a..ae704b4 100644 --- a/src/providers/myanimelist.ts +++ b/src/providers/myanimelist.ts @@ -23,7 +23,7 @@ export class MyAnimeList { const url = this.client.createAuthorizationURLWithPKCE( authorizationEndpoint, state, - CodeChallengeMethod.S256, + CodeChallengeMethod.Plain, codeVerifier, [] );