This repository has been archived by the owner on Feb 24, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 9
/
properties.json
40 lines (40 loc) · 1.91 KB
/
properties.json
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
31
32
33
34
35
36
37
38
39
40
{
"errors":{
"MISSING_COOKIE_MIDDLEWARE": "req.cookies does not exist - please configure cookie middleware",
"MISSING_BODY_MIDDLEWARE": "req.body does not exist - please configure body middleware",
"SP_CLIENT_UNINITIALIZED": "Stormpath client is not yet initialized",
"authorization":{
"FORBIDDEN": "You are not permitted to access this resource",
"FORBIDDEN_ORIGIN": "Forbidden Origin"
},
"authentication":{
"UNAUTHENTICATED": "Authentication required",
"BAD_PASSWORD_BODY": "Missing username or password in post body",
"BAD_ACCESS_TOKEN_BODY": "Missing providerId or accessToken in post body",
"UNKNOWN": "An error has occurred during authentication",
"UNSUPPORTED_GRANT_TYPE": "Unsupported grant type"
},
"xsrf":{
"XSRF_MISMATCH": "Invalid XSRF token"
},
"library":{
"MISSING_API_KEY_ID": "API Key ID not found, please check your spConfig or environment variables",
"MISSING_API_KEY_SECRET": "API Key Secret not found, please check your spConfig or environment variables",
"MISSING_APP_HREF": "App Href not found, please check your spConfig or environment variables",
"INVALID_SP_CONFIG": "Invalid spConfig",
"SP_APP_UNINITIALIZED": "Stormpath application is not yet initialized",
"SP_TENANT_UNINITIALIZED": "Stormpath tenant is not yet initialized",
"NODE_SDK_ERROR": "Unknown error from Node SDK"
}
},
"configuration":{
"DEFAULT_TOKEN_ENDPOINT": "/oauth/token",
"DEFAULT_LOGOUT_ENDPOINT": "/logout",
"DEFAULT_ACCESS_TOKEN_COOKIE_NAME": "access_token",
"DEFAULT_USER_COLLECTION_ENDPOINT": "/api/users",
"DEFAULT_CURRENT_USER_ENDPOINT": "/api/users/current",
"RESEND_EMAIL_VERIFICATION_ENDPOINT" : "/api/verificationEmails",
"EMAIL_VERIFICATION_TOKEN_COLLECTION_ENDPOINT": "/api/emailVerificationTokens",
"PASSWORD_RESET_TOKEN_COLLECTION_ENDPOINT": "/api/passwordResetTokens"
}
}