We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
As described in the documentation, the URL for the OAuth auth should be "https://my.mollie.com/". https://docs.mollie.com/reference/authorize
Currently it is set as follows: const MOLLIE_WEB_URL = 'https://www.mollie.com';
const MOLLIE_WEB_URL = 'https://www.mollie.com';
Which is used in
public function getBaseAuthorizationUrl(): string { return $this->mollieWebUrl . '/oauth2/authorize'; }
The text was updated successfully, but these errors were encountered:
Hi @StefanNiederkofler ,
Thanks for opening this ticket. Let me look into it.
Sorry, something went wrong.
You're right! The oauth2 authentication page url was silently updated to my.mollie.com. Updating it here.
And released!
https://github.com/mollie/oauth2-mollie-php/releases/tag/v2.8.1
Thanks again @StefanNiederkofler !
No branches or pull requests
As described in the documentation, the URL for the OAuth auth should be "https://my.mollie.com/".
https://docs.mollie.com/reference/authorize
Currently it is set as follows:
const MOLLIE_WEB_URL = 'https://www.mollie.com';
Which is used in
The text was updated successfully, but these errors were encountered: