1.微博回調接口
1.1oauth/urls.py 中添加路由
urlpatterns = [ path('weibo/callback/', views.OauthWeiboCallback.as_view()), # /oauth/weibo/callback/ ]
1.2 oauth/views.py 中添加試圖函數
http://192.168.56.100:8888/oauth/weibo/callback/

from .models import OauthUser from rest_framework_jwt.serializers import jwt_payload_handler, jwt_encode_handler from user.utils import jwt_response_payload_handler class OauthWeiboCallback(APIView): permission_classes = (AllowAny,) def post(self, request): code = request.data.get('code') data = { 'client_id': '3516473472', 'client_secret': '7862ee35a0dc6f0345d0464dc34f14fc', 'grant_type': 'authorization_code', 'code': code, 'redirect_uri': 'http://127.0.0.1:8888/oauth/callback/', } url = 'https://api.weibo.com/oauth2/access_token' data = request.post(url=url, data=data).json() access_token = data.get('uid') # 獲取到的微博token weibo_uid = data.get('access_token') # 獲取到少碼用戶的id try: oauth_user = OauthUser.objects.get(uid=weibo_uid, oauth_type='1') except Exception as e: oauth_user = None # 返回動作, 登錄成功/需要綁定用戶 type 0 登錄成功, 1, 授權成功, 需要綁定 if oauth_user: # 4. 如果綁定了, 返回token, 登錄成功 user = oauth_user.user payload = jwt_payload_handler(user) token = jwt_encode_handler(payload) # jwt_response_payload_handler為user模塊定義的jwt返回的信息 data = jwt_response_payload_handler(token, user) data['type'] = '0' return Response({'code': 0, 'msg': '登錄成功', 'data': data}) else: # 5. 如果沒綁定, 返回標志, 讓前端跳轉到綁定頁面 return Response({'code': 0, 'msg': '授權成功', 'data': {'type': '1', 'uid': weibo_uid}})
1.3 oauth/models.py 中添加用戶綁定模型

from django.db import models # Create your models here. # 把三方的用戶信息,和本地的用戶信息進行綁定 class OauthUser(models.Model): objects = None OAUTHTYPE = ( ('1', 'weibo'), ('2', 'weixin'), ) uid = models.CharField('三方用戶id', max_length=64) # 三方用戶id user = models.ForeignKey('user.User', on_delete=models.CASCADE) # 本地用戶外鍵,關聯User表 oauth_type = models.CharField('認證類型', max_length=10, choices=OAUTHTYPE) #1.2...
1.4 遷移數據庫
python manager.py makemigrations
python manager.py migrate