Closed felipenoris closed 6 years ago
Based on jwt.io , I find that trailing "=" characters should be removed from the encoded token.
Is that mentioned at jwt.io? Or is that a hack to make an encoded token look better?
@GildedHonour That is defined by RFC 7515. Please, refer to the Appendix C of this document.
Based on jwt.io , I find that trailing "=" characters should be removed from the encoded token.
You can check on pyjwt implementation, that funcions
base64url_decode
andbase64url_encode
take that in consideration.This package doesn´t observe this.