OAuth Token generation API for handling OAuth 2.0 Authentication Code Flow based on social-auth
Project description
django-social-oauth-token
Installation • Contributing • How To Use • License
OAuthToken generation API for handling OAuth 2.0 Authentication Code Flow based on social-auth
Installation
$ poetry add django-social-oauth-token
- Then register 'social_oauth_token', in the 'INSTALLED_APPS' section of your project's settings.
# settings.py
...
INSTALLED_APPS = (
...
'social_oauth_token',
)
...
- Include the
urlpatterns
in your mainurls
file.
# urls.py
urlpatterns = [
...
path("social_oauth_token/", include("social_oauth_token.urls", namespace="social_oauth_token")),
...
]
How To Use
In order to verify the Authorization Code sent by the user and replace it with your own OAuth Access Token, send a POST request to the token/<backend>/
endpoint with client_id
and code
to receive the token.
The POST request parameters:
client_id # OAuth Client ID
code # Authorization Code
The JSON response:
{
"access_token": <access_token>,
"expires_in": <expires_in>,
"token_type": <token_type>,
"refresh_token": <refresh_token>,
}
Contributing
Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.
Please make sure to update tests as appropriate.
License
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.