Learn how to secure an API written using Ruby On Rails with Auth0 authorization services.
Read more…
Brought to you by one of our Guest Author crew: Mario Fernandez
Learn how to secure an API written using Ruby On Rails with Auth0 authorization services.
Read more…
Brought to you by one of our Guest Author crew: Mario Fernandez
What are your thoughts folks? Share it in the comments!
Great guide. One thing to note is that token['permissions']
is now token['scope']
Thanks for sharing that with the rest of community!
Hey, thanks for sharing this amazing guide!
Three things to point out:
Rails.application.config.x.auth0
was returning an empty hash in my case, so I had to do: Rails.application.config_for(:auth0)[:Key-I-Need]
JWT.decode
instead of iss: Rails.application.config.x.auth0.issuerUri,
I used issuer: issuer,