mirror of
https://github.com/nais/wonderwall.git
synced 2026-05-09 18:06:42 +00:00
13 lines
276 B
Go
13 lines
276 B
Go
package token
|
|
|
|
const ScopeOpenID = "openid"
|
|
|
|
type JWTTokenRequest struct {
|
|
Issuer string `json:"iss"`
|
|
Subject string `json:"sub"`
|
|
Scopes string `json:"scope"`
|
|
Audience string `json:"aud"`
|
|
IssuedAt int64 `json:"iat"`
|
|
ExpiresAt int64 `json:"exp"`
|
|
}
|