Signed tokens with secret keys and HS512 etc, algorithm are breakable over
http://calebb.net/
secret = "unique_string"
payload = {user_id: 1}
token = JWT.encode(payload, secret, "HS512")}
=> "eyJhbGciOiJIUzUxMjI1NiJ9.eyJ1c2VyX2lkIjoxfQ.KOUOmkaLcVOLiQu4Im9T6TbU-aox8SsKDICsLh6HcDY"
copy and paste this token over above site and see the payload without providing secret key.
Please update a fix.