Skip to main content

Django WeChat OAuth2/Share/Token API

Project description

Django WeChat OAuth2/Share/Token API

Installation

pip install django-we

Urls.py

urlpatterns = [
    url(r'^we/', include('django_we.urls', namespace='wechat')),
]

or:

from django.conf.urls import include, url
from django_we import views as we_views

# WeChat OAuth2
urlpatterns = [
    url(r'^o$', we_views.we_oauth2, name='shorten_o'),
    url(r'^oauth$', we_views.we_oauth2, name='shorten_oauth'),
    url(r'^oauth2$', we_views.we_oauth2, name='shorten_oauth2'),
    url(r'^we_oauth2$', we_views.we_oauth2, name='we_oauth2'),
    url(r'^base_redirect$', we_views.base_redirect, name='base_redirect'),
    url(r'^userinfo_redirect$', we_views.userinfo_redirect, name='userinfo_redirect'),
    url(r'^direct_base_redirect$', we_views.direct_base_redirect, name='direct_base_redirect'),
    url(r'^direct_userinfo_redirect$', we_views.direct_userinfo_redirect, name='direct_userinfo_redirect'),
]

# WeChat Share
urlpatterns += [
    url(r'^ws$', we_views.we_share, name='shorten_we_share'),
    url(r'^weshare$', we_views.we_share, name='we_share'),
]

# WeChat JSAPI Signature
urlpatterns += [
    url(r'^js$', we_views.we_jsapi_signature_api, name='shorten_we_jsapi_signature_api'),
    url(r'^jsapi_signature$', we_views.we_jsapi_signature_api, name='we_jsapi_signature_api'),
]

# WeChat Token
urlpatterns += [
    url(r'^token$', we_views.we_access_token, name='we_token'),
    url(r'^access_token$', we_views.we_access_token, name='we_access_token'),
]

Settings.py

INSTALLED_APPS = (
    ...
    'django_we',
    ...
)

# Wechat Settings
WECHAT = {
    'JSAPI': {
        'token': '5201314',
        'appID': '',
        'appsecret': '',
        'mchID': '',
        'apiKey': '',
        'mch_cert': '',
        'mch_key': '',
        'redpack': {
            'SEND_NAME': '',
            'NICK_NAME': '',
            'ACT_NAME': '',
            'WISHING': '',
            'REMARK': '',
        }
    },
}

# Wechat OAuth Cfg
DJANGO_WE_OAUTH_CFG = 'JSAPI'  # Default ``JSAPI``

# Based on Urls.py
# WECHAT_OAUTH2_REDIRECT_URI = 'https://we.com/we/we_oauth2?scope={}&redirect_url={}'
# WECHAT_OAUTH2_REDIRECT_URI = 'https://we.com/we/o?scope={}&r={}'  # Shorten URL
WECHAT_OAUTH2_REDIRECT_URI = 'https://we.com/we/o?r={}'  # Shorten URL Farther, Scope default ``snsapi_userinfo``
WECHAT_BASE_REDIRECT_URI = 'https://we.com/we/base_redirect'
WECHAT_USERINFO_REDIRECT_URI = 'https://we.com/we/userinfo_redirect'
WECHAT_DIRECT_BASE_REDIRECT_URI = 'https://we.com/we/direct_base_redirect'
WECHAT_DIRECT_USERINFO_REDIRECT_URI = 'https://we.com/we/direct_userinfo_redirect'

# Temp Share Page to Redirect
WECHAT_OAUTH2_REDIRECT_URL = ''

Wechat_Only

# Settings.py
MIDDLEWARE = [
    ...
    'detect.middleware.UserAgentDetectionMiddleware',
    ...
]

WECHAT_ONLY = True  # Default False

# Usage
from django_we.decorators import wechat_only

@wechat_only
def xxx(request):
    """ Docstring """

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

django-we-1.3.9.tar.gz (8.7 kB view details)

Uploaded Source

Built Distribution

django_we-1.3.9-py2.py3-none-any.whl (11.3 kB view details)

Uploaded Python 2 Python 3

File details

Details for the file django-we-1.3.9.tar.gz.

File metadata

  • Download URL: django-we-1.3.9.tar.gz
  • Upload date:
  • Size: 8.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No

File hashes

Hashes for django-we-1.3.9.tar.gz
Algorithm Hash digest
SHA256 6ab05f0e23fdaa24d3135a5c6fda82e0f606cdd0948ef7452774488a9839b015
MD5 b307d1a0c82dc9f6bdd1e9de72185e49
BLAKE2b-256 a01f35134e17e4925bc68c3ac81efadad6888ce546eb216d26010b7b8a8566d8

See more details on using hashes here.

File details

Details for the file django_we-1.3.9-py2.py3-none-any.whl.

File metadata

File hashes

Hashes for django_we-1.3.9-py2.py3-none-any.whl
Algorithm Hash digest
SHA256 05ae264608eba66685a448c58b7c7849d27132befa23822a82ed0d7f176c4a15
MD5 636ca82c897a8f5ea54a682a951db520
BLAKE2b-256 7d7f12518bf9a9e2c13f7a480a1ee6e8317683656243cbb6412bcf10f4502de5

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page