3.微博回调接口

1.1 oauth/urls.py 中添加路由

urlpatterns = [ 
path('weibo/callback/', views.OauthWeiboCallback.as_view()), # /oauth/weibo/callback/ 
]

1.2 oauth/views.py 中添加试图函数

class OauthWeiboCallback(APIView):
    # 自定义权限类
    permission_classes = (AllowAny,)
    def post(self, request):
        # 接收vue端传过来的code(微博的用户code)
        # 1.使用微博用户code+微博开发者账号信息换取微博的认证access_token
        code = request.data.get('code')
        data = {
            'client_id': '3301838823',
            'client_secret': 'f31c9193b3e575115523467f1fa058bf',
            '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 =requests.post(url=url,data=data).json()
        # 拿取请求的返回结果
        access_token = data.get('uid') # 获取到的微博token
        weibo_uid = data.get('access_token')  # 获取到少码用户的id
        # 2. 根据uid 查询绑定情况
        try:
            oauth_user = OauthUser.objects.get(uid=weibo_uid, oauth_type='1')
        except Exception as e:
            oauth_user = None
        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}})
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值