Reputation: 13175
I have an oauth 2 server implemented using django oauth2 provider.
I am implementing the client credentials flow in an api.
The client app POSTs to the oauth server's /token/ endpoint to get the access token. That is then sent to my api in the header. What endpoint should the api then call on the oauth server to validate this token, when using a back channel?
Upvotes: 2
Views: 150
Reputation: 153
There is an easy solution to your problem implement django-allauth every thing is taken care.
Upvotes: 0