Please do not report security vulnerabilities here. The Responsible Disclosure Program details the procedure for disclosing security issues.
Thank you in advance for helping us to improve this library! Please read through the template below and answer all relevant questions. Your additional work here is greatly appreciated and will help us respond as quickly as possible. For general support or usage questions, use the Auth0 Community or Auth0 Support. Finally, to avoid duplicates, please search existing Issues before submitting one here.
By submitting an Issue to this repository, you agree to the terms within the Auth0 Code of Conduct.
Description
Using Auth0\SDK\API\Authentication::email_passwordless_start to initiate passwordless authentication, I get a 403 with response body {"error":"unauthorized_client","error_description":"Client authentication is required"}. I've included my client_secret when constructing the Auth0\SDK\API\Authentication.
Reproduction
Detail the steps taken to reproduce this error, what was expected, and whether this issue can be reproduced consistently or if it is intermittent.
(new Authentication(config('laravel-auth0.domain'), config('laravel-auth0.client_id'), config('laravel-auth0.client_secret')))->email_passwordless_start($email, 'link');
Please do not report security vulnerabilities here. The Responsible Disclosure Program details the procedure for disclosing security issues.
Thank you in advance for helping us to improve this library! Please read through the template below and answer all relevant questions. Your additional work here is greatly appreciated and will help us respond as quickly as possible. For general support or usage questions, use the Auth0 Community or Auth0 Support. Finally, to avoid duplicates, please search existing Issues before submitting one here.
By submitting an Issue to this repository, you agree to the terms within the Auth0 Code of Conduct.
Description
Using
Auth0\SDK\API\Authentication::email_passwordless_start
to initiate passwordless authentication, I get a 403 with response body{"error":"unauthorized_client","error_description":"Client authentication is required"}
. I've included my client_secret when constructing theAuth0\SDK\API\Authentication
.Reproduction
Can be reproduced with:
Current library code is not setting the client_secret right here: https://github.com/auth0/auth0-PHP/blob/master/src/API/Authentication.php#L267
Environment