pennersr / django-allauth

Integrated set of Django applications addressing authentication, registration, account management as well as 3rd party (social) account authentication.

Home Page:https://allauth.org

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

django-allauth doesn't cater for app-only access yes?

simkimsia opened this issue · comments

for microsoft graph, there are two kinds of access scenarios

https://learn.microsoft.com/en-us/graph/auth/auth-concepts#access-scenarios

image

django-allauth helps with the Delegated access, which is the app acting on behalf of a signed-in user.

because the access token is stored in socialtoken

but I assume that django-allauth doesn't help with app-only access yes?

The scope of allauth is user authentication. Anything else, such as e.g. the machine-to-machine client credentials flow is out of scope.