golang.org/x/oauth2/jws.ClaimSet.Iat (field)
6 uses
golang.org/x/oauth2/jws (current package)
jws.go#L39: Iat int64 `json:"iat"` // the time the assertion was issued (seconds since Unix epoch)
jws.go#L59: if c.Iat == 0 {
jws.go#L60: c.Iat = now.Unix()
jws.go#L65: if c.Exp < c.Iat {
jws.go#L66: return "", fmt.Errorf("jws: invalid Exp = %v; must be later than Iat = %v", c.Exp, c.Iat)
golang.org/x/oauth2/google
jwt.go#L61: Iat: iat.Unix(),
![]() |
The pages are generated with Golds v0.3.2-preview. (GOOS=darwin GOARCH=amd64) Golds is a Go 101 project developed by Tapir Liu. PR and bug reports are welcome and can be submitted to the issue list. Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |