Skip to content

Commit e8ac1be

Browse files
davidjbziluvatar
authored andcommitted
Clarify that buffer/string payloads must be JSON (#442)
It does kinda go without saying that JWTs (_JSON_ Web Tokens) need to contain JSON but it's worth mentioning that signing doesn't check your payload. In some unit tests I was writing where the payload was a dummy (non-JSON parsable) string, JWTs were being signed okay but they're not valid according to the spec.
1 parent dee583a commit e8ac1be

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ $ npm install jsonwebtoken
2525

2626
(Synchronous) Returns the JsonWebToken as string
2727

28-
`payload` could be an object literal, buffer or string. *Please note that* `exp` is only set if the payload is an object literal.
28+
`payload` could be an object literal, buffer or string representing valid JSON. *Please note that* `exp` is only set if the payload is an object literal. Buffer or string payloads are not checked for JSON validity.
2929

3030
`secretOrPrivateKey` is a string, buffer, or object containing either the secret for HMAC algorithms or the PEM
3131
encoded private key for RSA and ECDSA. In case of a private key with passphrase an object `{ key, passphrase }` can be used (based on [crypto documentation](https://nodejs.org/api/crypto.html#crypto_sign_sign_private_key_output_format)), in this case be sure you pass the `algorithm` option.

0 commit comments

Comments
 (0)