Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
JSON Web Token フローアクションを設定して、JSON Web Token に署名、検証、デコードする方法について説明します。
token
{ "token": "eyJhbGciOiJIUzI1N..." }
payload
{ "header": { "alg": "HS256", "typ": "JWT" }, "payload": { "sub": "1234567890", "name": "John Doe", "iat": 1516239022 }, "signature": "SflKxwRJSMeKKF2QT4fwpMeJf36POk6yJV_adQssw5c" }
valid
true
false
cause
{ "valid": true, "header": { "alg": "HS256", "typ": "JWT" }, "payload": { "sub": "1234567890", "name": "Jane Doe", "iat": 1516239022 }, "signature": "SflKxwRJSMe..." }
{ "valid": false, "cause": "INVALID_SIGNATURE" }