Skip to content

Commit d7e7538

Browse files
Merge pull request #354 from mollie/bugfix/use-correct-authorize-url
IMP-610: Use correct OAuth Authorize URL
2 parents dd6b609 + 6d05f55 commit d7e7538

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

mollie/api/client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ class Client(object):
3838
API_VERSION: str = "v2"
3939
UNAME: str = " ".join(platform.uname())
4040

41-
OAUTH_AUTHORIZATION_URL: str = "https://www.mollie.com/oauth2/authorize"
41+
OAUTH_AUTHORIZATION_URL: str = "https://my.mollie.com/oauth2/authorize"
4242
OAUTH_AUTO_REFRESH_URL: str = API_ENDPOINT + "/oauth2/tokens"
4343
OAUTH_TOKEN_URL: str = API_ENDPOINT + "/oauth2/tokens"
4444

0 commit comments

Comments
 (0)