Skip to main content

A Django app to integration social accounts

Project description

Django Social APP

基于django的社交帐号APP

包含微信APP, 微信小程序, 微信公众号, 抖音小程序, QQ开放平台等

Quick start

  1. 更新settings.py
INSTALLED_APPS = [
    ...
    'social',
]
  1. 执行python manage.py migrate

Web使用

AuthView

from social.views.AuthView

方式一, 直接使用 修改urls.py

from social.views import AuthView

urlpatterns = [
    ...
    path('social/<slug:provider>/', AuthView.as_view()),
]

方式二, 继承 修改views.py

from social.views import AuthView as BaseAuthView

class AuthView(BaseAuthView):
    success_url = '/success/'

API使用

API使用django-rest-framework框架, Token使用django-rest-framework-simplejwt

安装依赖

$ pip install djangorestfamework
$ pip install django-rest-famework-simplejwt

直接使用

from social.apis import AuthView, SocialUpdateView

urlpatterns = [
    ...
    path('social/auth/<slug:provider>/', AuthView.as_view()),
    path('social/update/', SocialUpdateView.as_view()),
]

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-social-cn-0.1.1.tar.gz (9.2 kB view details)

Uploaded Source

File details

Details for the file django-social-cn-0.1.1.tar.gz.

File metadata

  • Download URL: django-social-cn-0.1.1.tar.gz
  • Upload date:
  • Size: 9.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.6.0 requests-toolbelt/0.9.1 tqdm/4.41.0 CPython/3.8.0

File hashes

Hashes for django-social-cn-0.1.1.tar.gz
Algorithm Hash digest
SHA256 2f2617c0372312a1e9e49527594311121734cd978d2c93e8a3bc799d5db4b419
MD5 b162eec8c1a3e13a025c094b3764b1bb
BLAKE2b-256 75ea2291cbdeac7720ac973d07461a38bbe65cc0085abfc0b4f450b9e14d2e0f

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