Code Monkey home page Code Monkey logo

Comments (4)

seh avatar seh commented on August 15, 2024

You can use jwtutil.Resolver for this purpose. Pass a Resolver value to the jwt.Verify function as the second "alg" parameter, as Resolver satisfies the Algorithm interface. This assumes that the reason you want the "kid" field value is to look up a key with which to verify the token's signature.

There was some previous discussion in #23 and, more recently for the current interface in #30 (comment). It's an odd design, difficult to discover on your own, but I can confirm that it does work if your goal is to look up a key by its ID.

from jwt.

pf512 avatar pf512 commented on August 15, 2024

Thank you! Solved my issue.

We also store custom data in our payload that we use prior to verification. The previous 3.0 beta we used allowed us to get the payload. Is there a way to still get the payload without verifying the token?

from jwt.

gbrlsnchs avatar gbrlsnchs commented on August 15, 2024

Sorry, all this oddity is due to the design decision of not allowing to decode the JWT without also verifying it. It might be possible to export the functions that parse header and payload, though.

from jwt.

gbrlsnchs avatar gbrlsnchs commented on August 15, 2024

I decided not to allow checking the payload without verifying the whole token. The intention is to make a safer API, although boring. You can always Base64 decode the raw incoming token to get whatever information you need, at your own risk. I advise against trusting information of unverified tokens.

from jwt.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.