Reputation: 21
I need to revoke the refresh token by user and client. But I'm not sure how to do this.
Can I use the revoke endpoint for refresh tokens?
Or do I need to write code. I am using EF in Identity, in startup I have:
AddOperationalStore(options => ....)
There seems to be two options to delete tokens:
Which one can I use for this purpose?
Or should I implement the code for the delete as described in this article?
Upvotes: 1
Views: 602
Reputation: 683
If you need to revoke all the tokens for a given SubjectId/ClientId combination, you cannot use the revoke endpoint you list in your question. That's intended to revoke a single token.
The article you link is about not using ASP.NET Core Identity. That is a different matter and should have no impact on your desire to remove all refresh tokens for a user.
The way to go is indeed use the IRefreshTokenStore.RemoveRefreshTokensAsync
method, where you can provide the SubjectId and ClientId. This does not necesarely 'revoke' the tokens, it removes them all from the database.
Upvotes: 1