You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Adds new JWT_CLAIMS_IN_REFRESH_TOKEN configuration option, which if set to true will cause the user claims to be loaded into refresh tokens as well as access tokens (#100).
Allows passing JWTs in via the query string (#117). Note that in most cases this is not a great idea, see the documentation as to why.
Break out code to verify JWTs in a request into helper functions. This allows you to easily create your own decorators that utilize this extension (such as a role_required decorator), or hook up functionality to a flask before_request. (#131)