Added comment

This commit is contained in:
M66B 2020-07-02 14:56:29 +02:00
parent f0426224ea
commit c8866903f3
1 changed files with 1 additions and 0 deletions

View File

@ -408,6 +408,7 @@ public class FragmentOAuth extends FragmentBase {
String[] segments = jwt.split("\\.");
if (segments.length > 1)
try {
// https://jwt.ms/
String payload = new String(Base64.decode(segments[1], Base64.DEFAULT));
EntityLog.log(context, "jwt payload=" + payload);
JSONObject jpayload = new JSONObject(payload);