We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9ff5c45 commit fa1a138Copy full SHA for fa1a138
src/JwtValidateMiddleware.php
@@ -77,7 +77,7 @@ protected function parseAuthorizationHeader($header)
77
if (strpos($header, "Bearer") === 0) {
78
list($tokenString) = sscanf($header, "Bearer %s");
79
80
- return base64_decode($tokenString);
+ return $tokenString;
81
}
82
83
// Otherwise we expect the token to be specific directly (not encoded) with the "Token" label
0 commit comments