From b08d88922b9870c1a22120fa4e84efea33ba89f1 Mon Sep 17 00:00:00 2001 From: DonHaul Date: Fri, 20 Dec 2024 15:39:23 +0000 Subject: [PATCH] chore(orcid): bump profile api --- allauth/socialaccount/providers/orcid/views.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/allauth/socialaccount/providers/orcid/views.py b/allauth/socialaccount/providers/orcid/views.py index 1821f5a90d..63b6a85995 100644 --- a/allauth/socialaccount/providers/orcid/views.py +++ b/allauth/socialaccount/providers/orcid/views.py @@ -24,7 +24,7 @@ class OrcidOAuth2Adapter(OAuth2Adapter): authorize_url = "https://{0}/oauth/authorize".format(base_domain) access_token_url = "https://{0}/oauth/token".format(api_domain) - profile_url = "https://{0}/v2.1/%s/record".format(api_domain) + profile_url = "https://{0}/v3.0/%s/record".format(api_domain) def complete_login(self, request, app, token, **kwargs): params = {}