Skip to content

Commit 44e3c8d

Browse files
committed
Changes aud/iss error to use actual expected value
The message part of the JsonWebTokenError generated for aud and iss mismatch currently use the [PAYLOAD AUDIENCE] and [PAYLOAD ISSUER] as the expected value. This leads to confusion. For example, say a JWT aud is set to 'https://localhost' and the expected value is 'https://localhost:8443'. The resulting error message is: 'jwt audience invalid. expected: https://localhost:8443' Which of courses tells the user that the audience is incorrect, yet the expected value is the value sent. This commit changes the error message to use the actual expected values, [OPTIONS AUDIENCE] and [OPTIONS ISSUER].
1 parent 16f17df commit 44e3c8d

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -162,8 +162,8 @@ Error object:
162162
* 'jwt malformed'
163163
* 'jwt signature is required'
164164
* 'invalid signature'
165-
* 'jwt audience invalid. expected: [PAYLOAD AUDIENCE]'
166-
* 'jwt issuer invalid. expected: [PAYLOAD ISSUER]'
165+
* 'jwt audience invalid. expected: [OPTIONS AUDIENCE]'
166+
* 'jwt issuer invalid. expected: [OPTIONS ISSUER]'
167167

168168
```js
169169
jwt.verify(token, 'shhhhh', function(err, decoded) {

index.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -120,12 +120,12 @@ module.exports.verify = function(jwtString, secretOrPublicKey, options, callback
120120
var match = target.some(function(aud) { return audiences.indexOf(aud) != -1; });
121121

122122
if (!match)
123-
return done(new JsonWebTokenError('jwt audience invalid. expected: ' + payload.aud));
123+
return done(new JsonWebTokenError('jwt audience invalid. expected: ' + audiences.join(' or ')));
124124
}
125125

126126
if (options.issuer) {
127127
if (payload.iss !== options.issuer)
128-
return done(new JsonWebTokenError('jwt issuer invalid. expected: ' + payload.iss));
128+
return done(new JsonWebTokenError('jwt issuer invalid. expected: ' + options.issuer));
129129
}
130130

131131
return done(null, payload);

0 commit comments

Comments
 (0)