Is there a way to implement recourse- owner/password based Authorization grant type flow using social-app-django ?
Notes :
This flow doesn't require any Authorization Grant (code).
Send POST request to token API (Payload : username, password, client_id, client_secret)
Actual behavior
Suppose we have created a authorization server using django-oauth-toolkit , and added a app with recourse-owner/password, social-app-django should provide a mechanism to integrate the above server as authentication backend.
Expected behavior
Is there a way to implement
recourse- owner/password
based Authorization grant type flow using social-app-django ?Notes :
Actual behavior
Suppose we have created a authorization server using django-oauth-toolkit , and added a app with
recourse-owner/password
, social-app-django should provide a mechanism to integrate the above server as authentication backend.