djdg OAuth2 method for Django
Project description
# django-oauth
Description
--------
Djdg Django Oauth provides a simple signature middleware verification between apps
Support
-------
mail to zane.yang@hey900.com
Requirements
------------
* Python 2.7
* Django 1.9
Installation
------------
**Install with pip**
pip install djdg-django-oauth
**Add `djdg_oauth` to your `INSTALLED_APPS`**
INSTALLED_APPS = (
...
'djdg_oauth',
)
**run migrate to add tables:**
python manage.py migrate djdg_oauth
**list, add, del app secret:**
python manage.py listauthapp {app_name}
python manage.py addauthapp {app_name}
python manage.py delauthapp {app_name}
**add middleware**(**options**, *you can create yourself middleware with djdg_oauth.oauthclient.OauthClient.verify_request*):
MIDDLEWARE_CLASSES = (
...
'djdg_oauth.middleware.DjdgAuthMiddleware',
)
**add settings**(*app secret gaved by others*)
DJDG_AUTH = {
"APPS": [
{"appid": "xxxxxx", "secret": "xxxxxxxxxxxxxxxxxxx", "app": "xxx"},
....
]
"FULL_ESCAPE_URL": [....] # full match url to escape auth check,
"REGEX_ESCAPE_URL": [....] # regex match url to escape auth check,
"REGEX_CHECK_URL":[...] # need check url, if not empty, escape urls invalid
}
)
Documentation
--------------
**Verify request**
from djdg_oauth.oauthclient import OauthClient
auth = OauthClient()
auth.verify(request)
**Do request**
from djdg_oauth.oauthclient import OauthClient
request_data = {
"url": #url,
"app": #app type,
"parameters": #all request data,
"method": #request method,
"headers": #default None
}
OauthClient.oauth_request(**request_data)
License
-------
djdg-oauth is released under the terms of the **BSD license**. Full details in ``LICENSE`` file.
Changelog
---------
version 0.0.20
debug ascii error
Description
--------
Djdg Django Oauth provides a simple signature middleware verification between apps
Support
-------
mail to zane.yang@hey900.com
Requirements
------------
* Python 2.7
* Django 1.9
Installation
------------
**Install with pip**
pip install djdg-django-oauth
**Add `djdg_oauth` to your `INSTALLED_APPS`**
INSTALLED_APPS = (
...
'djdg_oauth',
)
**run migrate to add tables:**
python manage.py migrate djdg_oauth
**list, add, del app secret:**
python manage.py listauthapp {app_name}
python manage.py addauthapp {app_name}
python manage.py delauthapp {app_name}
**add middleware**(**options**, *you can create yourself middleware with djdg_oauth.oauthclient.OauthClient.verify_request*):
MIDDLEWARE_CLASSES = (
...
'djdg_oauth.middleware.DjdgAuthMiddleware',
)
**add settings**(*app secret gaved by others*)
DJDG_AUTH = {
"APPS": [
{"appid": "xxxxxx", "secret": "xxxxxxxxxxxxxxxxxxx", "app": "xxx"},
....
]
"FULL_ESCAPE_URL": [....] # full match url to escape auth check,
"REGEX_ESCAPE_URL": [....] # regex match url to escape auth check,
"REGEX_CHECK_URL":[...] # need check url, if not empty, escape urls invalid
}
)
Documentation
--------------
**Verify request**
from djdg_oauth.oauthclient import OauthClient
auth = OauthClient()
auth.verify(request)
**Do request**
from djdg_oauth.oauthclient import OauthClient
request_data = {
"url": #url,
"app": #app type,
"parameters": #all request data,
"method": #request method,
"headers": #default None
}
OauthClient.oauth_request(**request_data)
License
-------
djdg-oauth is released under the terms of the **BSD license**. Full details in ``LICENSE`` file.
Changelog
---------
version 0.0.20
debug ascii error
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.
Source Distribution
File details
Details for the file djdg-django-oauth-1.0.1.tar.gz
.
File metadata
- Download URL: djdg-django-oauth-1.0.1.tar.gz
- Upload date:
- Size: 8.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 286fb98df4213f8b73c91c4236b9d31c872084911d3647529e74d059df903c6d |
|
MD5 | 8c882f997d9bcea944aa6f13f5b23dbe |
|
BLAKE2b-256 | 1a59136aabd0eef27f1e1fdeb96594a738f08ad51863bf83f679172ce1d01c09 |