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 5712438 commit 2233c0eCopy full SHA for 2233c0e
src/webservices/includes/ws-authenticate-jwt-token.php
@@ -61,7 +61,7 @@ function authenticateJWTToken() {
61
62
try {
63
// Decode the token using the JWT_SECRET_KEY and verify the HS256 signature.
64
- #$lDecodedToken = JWT::decode($lToken, JWT_SECRET_KEY, [JWT_EXPECTED_ALGORITHM]);
+ $lDecodedToken = JWT::decode($lToken, JWT_SECRET_KEY, [JWT_EXPECTED_ALGORITHM]);
65
66
// Validate the `iss` (issuer) claim.
67
if ($lDecodedToken->iss !== JWT_EXPECTED_ISSUER) {
0 commit comments