-
Notifications
You must be signed in to change notification settings - Fork 136
New issue
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
Utilise Auth0->Login to ensure state validation #90
Conversation
There is no auth0-PHP 5.1 yet, release that first and can then test this for a quick release. |
Update auth0-PHP dependency
713dbc5
to
d015be6
Compare
Don't merge. |
…elling in function signature
@@ -51,10 +51,10 @@ public function logout() | |||
/** | |||
* Redirects the user to the hosted login page | |||
*/ | |||
public function login($connection = null, $state = null, $aditional_params = ['scope' => 'openid profile email'], $response_type = 'code') | |||
public function login($connection = null, $state = null, $additional_params = ['scope' => 'openid profile email'], $response_type = 'code') |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This looks at first like a BREAKING CHANGE. Is it just the parameter name, used internally in this method logic or can people actually call this method passing a dictionary with the ${param_name}
as keys?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@lbalmaceda - No fancy stuff here, just the internal signature.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
👍
Update auth0-PHP dependency