Files
GNX-mailEnterprise/venv/lib/python3.12/site-packages/allauth/socialaccount/providers/weibo/views.py
Iliyan Angelov c67067a2a4 Mail
2025-09-14 23:24:25 +03:00

29 lines
928 B
Python

import requests
from allauth.socialaccount.providers.oauth2.views import (
OAuth2Adapter,
OAuth2CallbackView,
OAuth2LoginView,
)
from .provider import WeiboProvider
class WeiboOAuth2Adapter(OAuth2Adapter):
provider_id = WeiboProvider.id
access_token_url = "https://api.weibo.com/oauth2/access_token"
authorize_url = "https://api.weibo.com/oauth2/authorize"
profile_url = "https://api.weibo.com/2/users/show.json"
def complete_login(self, request, app, token, **kwargs):
uid = kwargs.get("response", {}).get("uid")
resp = requests.get(
self.profile_url, params={"access_token": token.token, "uid": uid}
)
extra_data = resp.json()
return self.get_provider().sociallogin_from_response(request, extra_data)
oauth2_login = OAuth2LoginView.adapter_view(WeiboOAuth2Adapter)
oauth2_callback = OAuth2CallbackView.adapter_view(WeiboOAuth2Adapter)