Update Auth0 scope to use profile and email

Auth0 implementation is currently broken, since you can not get email from just the openid scope.
master
vaivars 4 years ago committed by GitHub
parent 8cf29182a5
commit 5ad3d0fce5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -14,7 +14,7 @@ use OAuth\Common\Http\Uri\UriInterface;
class Auth0 extends AbstractService
{
const SCOPE_OPENID = 'openid';
const SCOPE_OPENID = 'openid profile email';
protected $domain;
public function __construct(

Loading…
Cancel
Save