You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to ruby-jwt
I'm working on an application that has a staff side and a member side application... A staff person can add a member which generates an email with a JWT for the member to be able to sign into the member side. I'm running into an issue with not being able to verify the signature because the token was generated on a different box than where it's being decoded, even though I'm using the same secret key. Is there a better way to do this so that I can still verify the signature? Is this not possible with HS512?
excpt
unread,
Sep 28, 2017, 2:37:22 PM9/28/17
Reply to author
Sign in to reply to author
Forward
Sign in to forward
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to ruby-jwt
Hey Jason,
Encoding and decoding on different machines should not cause any issues. That's what JWT was designed to do.
Do both machines use Ruby or a different language?