28 lines
852 B
Python
28 lines
852 B
Python
import requests
|
|
|
|
from allauth.socialaccount.providers.oauth2.views import (
|
|
OAuth2Adapter,
|
|
OAuth2CallbackView,
|
|
OAuth2LoginView,
|
|
)
|
|
|
|
from .provider import SpotifyOAuth2Provider
|
|
|
|
|
|
class SpotifyOAuth2Adapter(OAuth2Adapter):
|
|
provider_id = SpotifyOAuth2Provider.id
|
|
access_token_url = "https://accounts.spotify.com/api/token"
|
|
authorize_url = "https://accounts.spotify.com/authorize"
|
|
profile_url = "https://api.spotify.com/v1/me"
|
|
|
|
def complete_login(self, request, app, token, **kwargs):
|
|
extra_data = requests.get(
|
|
self.profile_url, params={"access_token": token.token}
|
|
)
|
|
|
|
return self.get_provider().sociallogin_from_response(request, extra_data.json())
|
|
|
|
|
|
oauth_login = OAuth2LoginView.adapter_view(SpotifyOAuth2Adapter)
|
|
oauth_callback = OAuth2CallbackView.adapter_view(SpotifyOAuth2Adapter)
|