-
-
Notifications
You must be signed in to change notification settings - Fork 17
/
uri.go
30 lines (28 loc) · 917 Bytes
/
uri.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
package uri
const (
RedirectURIKey = "redirect_uri"
StateKey = "state"
ClientIDKey = "client_id"
NonceKey = "nonce"
CodeKey = "code"
ScopeKey = "scope"
ReturnToKey = "returnTo"
Auth0ClientKey = "auth0Client"
GrantTypeKey = "grant_type"
UsernameKey = "username"
PasswordKey = "password"
AudienceKey = "audience"
RefreshTokenKey = "refresh_token"
ErrorMessageKey = "error"
DeviceIDKey = "deviceId"
ResponseModeKey = "response_mode"
ResponseTypeKey = "response_type"
DeviceIDClaimKey = "https://plgd.dev/deviceId"
OwnerClaimKey = "https://plgd.dev/owner"
Token = "/oauth/token"
Authorize = "/authorize"
UserInfo = Authorize + "/userinfo"
JWKs = "/.well-known/jwks.json"
OpenIDConfiguration = "/.well-known/openid-configuration"
LogOut = "/v2/logout"
)