Skip to content

Commit be6d169

Browse files
authored
fix(core): adds 'none' token endpoint auth method for oauth and oidc (#12066)
1 parent 4b13afa commit be6d169

File tree

1 file changed

+3
-0
lines changed
  • packages/core/src/lib/actions/callback/oauth

1 file changed

+3
-0
lines changed

packages/core/src/lib/actions/callback/oauth/callback.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -118,6 +118,9 @@ export async function handleOAuth(
118118
},
119119
})
120120
break
121+
case "none":
122+
clientAuth = o.None()
123+
break
121124
default:
122125
throw new Error("unsupported client authentication method")
123126
}

0 commit comments

Comments
 (0)