I'm creating a web based mobile application. My concern is that, the payload of the JWT token can be decoded from the JWT WEBSITE even without having the key. It shows Invalid Signature error, but still shows the payload included in the token.
I'm wondering how much secure is using the JWT token with this scenario.
Here is a sample token generated by my API - eyJhbGciOiJIUzUxMiJ9.eyJzdWIiOiJKb2UiLCJuYW1lIjoidnl3diJ9.8xeKufZ-U5ksijK2fCeU7gnZ5Xg-eUTqlZ2SdxrslklHNm519xYx-0DkhEyNe2NRhMUNfyhNsnkpZWim9lqi5w
May be my understanding about JWT is not enough, Is there any solution for this?