Replies: 1 comment 4 replies
-
See https://github.com/panva/node-openid-client/tree/v5.1.4/docs#clientrevoketoken-tokentypehint-extras
It would appear your configuration and AAD? doesn't have one, hence you cannot perform token revocation. |
Beta Was this translation helpful? Give feedback.
4 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Context
I'm faced with the following error while implementing an openid strategy using Azure AD B2C as identity server. Here is its well-known
Set Up
I instantiated a oidc client using
The error
Callback and token revocation work like a charm. The problem occurs when I try to revoke a token at logout using
client.revoke(token)
Questions
Does the problem come from the well-known not containing the proper metadata (or at least the ones expected by this lib) or does it come from the way I construct the client? I tried to add several parameters like
revocation
orend_session
based on what I could understand fromopenid-client/lib/helpers/assert
but without much effectBeta Was this translation helpful? Give feedback.
All reactions