Giter VIP home page Giter VIP logo

Comments (2)

MarkMurphy avatar MarkMurphy commented on May 20, 2024 1

Hi @delphaber, there is a direct correlation between the token generated and the parameters you generate it with, meaning that if you're passing the same payload, secret key, etc. as you've done for a previous token, you'll get the same output.

You can easily test that here: https://jwt.io/

You'll find that if you change the name from one value and then back again, you get the same token for each input you use.

So, to make your token more unique you can do something like this in your config:

Doorkeeper::JWT.configure do
  # Set the payload for the JWT token. This should contain unique information
  # about the user.
  # Defaults to a randomly generated token in a hash
  # { token: "RANDOM-TOKEN" }
  token_payload do |opts|
    user = User.find(opts[:resource_owner_id])
    {
      exp: (opts[:created_at] + opts[:expires_in]).utc.to_i,
      iss: "api.yourcooldomain.com",
      iat: opts[:created_at].utc.to_i, 
      jti: SecureRandom.uuid,
      sub: user.id,
      user: {
        id: user.id,
        name: user.name,
        email: user.email,
        email_md5: user.email_md5,
        admin: user.admin?
      }
    }
  end

  # Use the application secret specified in the Access Grant token
  # Defaults to false
  # If you specify `use_application_secret true`, both secret_key and secret_key_path will be ignored
  use_application_secret true

  # Set the encryption secret. This would be shared with any other applications
  # that should be able to read the payload of the token.
  # Defaults to "secret"
  secret_key Rails.application.secrets.secret_key_base

  # If you want to use RS* encoding specify the path to the RSA key
  # to use for signing.
  # If you specify a secret_key_path it will be used instead of secret_key
  # secret_key_path "path/to/file.pem"

  # Specify encryption type. Supports any algorithim in
  # https://github.com/progrium/ruby-jwt
  # defaults to nil
  encryption_method :hs512
end

Notice that the jti (json token identifier) and iat (issued at) are going to be unique each and every time the proc is invoked. Either one should solve your problem. I like to add them both.

You can find more information about the those keys (JWT Claims) and more from here: https://tools.ietf.org/html/rfc7519#section-4

@chriswarren This might be a good note to add to the readme.

from doorkeeper-jwt.

delphaber avatar delphaber commented on May 20, 2024

Very kind and professional, thank you!

from doorkeeper-jwt.

Related Issues (16)

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.