Skip to content

Commit

Permalink
Merge pull request #54 from adamgoose/patch-2
Browse files Browse the repository at this point in the history
Fixing JWTVerifier
  • Loading branch information
glena authored Oct 3, 2016
2 parents 8f98239 + 40beb0b commit f44ce36
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Auth0/Login/Auth0Service.php
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ public function decodeJWT($encUser)
$verifier = new JWTVerifier([
'valid_audiences' => [config('laravel-auth0.client_id'), config('laravel-auth0.api_identifier')],
'client_secret' => config('laravel-auth0.client_secret'),
'authorized_issuers' => config('laravel-auth0.authorized_issuers'),
'authorized_iss' => config('laravel-auth0.authorized_issuers'),
'cache' => $cache,
]);

Expand Down

0 comments on commit f44ce36

Please sign in to comment.