假设我通过openid-connect成功登录后收到了令牌
http://xxxxxx/auth/realms/demo/protocol/openid-connect/token
{
"access_token": "xxxxxx",
"expires_in": 600,
"refresh_expires_in": 1800,
"refresh_token": "xxxxxx",
"token_type": "bearer",
"not-before-policy": xxxx,
"session_state": "xxxxx",
"scope": "email profile"
}
有没有办法像https://jwt.io/那样使用 PHP解码 jwt 令牌的有效负载?谢谢。
慕森王