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
With JWT versions >= 1.0, JWT.decode is returning a token AND a header. Then,
the call @token = JWT.decode(token, public_key, !!public_key) is no longer
right.
There are 2 solutions,
1) freezing gem dependencies to JWT ~> 0.1
or
2) update the call to
@token, unnused = JWT.decode(token, public_key, !!public_key)
I am having the same problems that this user.
Original comment by je...@microhealth.org on 17 Jul 2014 at 9:48
Original issue reported on code.google.com by
sebastie...@gmail.com
on 12 Jun 2014 at 3:55The text was updated successfully, but these errors were encountered: