Class OAuthUserInfoResponse
Contains the response from the third-party OAuth server when requesting user info. Refer to the corresponding OAuth provider documentation regarding what the format might be (in most cases it would be JSON). The data returned would also vary depending on the scope.
| Property | Description |
|---|---|
errorStatus: String (read-only) | Returns the error status In cases of errors - more detailed error information can be seen in the error log files (specificity of error details vary by OAuth provider). |
userInfo: String (read-only) | Returns the user info as a String. |
This class does not have a constructor, so you cannot create it directly.
| Method | Description |
|---|---|
| getErrorStatus() | Returns the error status In cases of errors - more detailed error information can be seen in the error log files (specificity of error details vary by OAuth provider). |
| getUserInfo() | Returns the user info as a String. |
assign, create, create, defineProperties, defineProperty, entries, freeze, fromEntries, getOwnPropertyDescriptor, getOwnPropertyNames, getOwnPropertySymbols, getPrototypeOf, hasOwnProperty, is, isExtensible, isFrozen, isPrototypeOf, isSealed, keys, preventExtensions, propertyIsEnumerable, seal, setPrototypeOf, toLocaleString, toString, valueOf, values
- errorStatus: String
(read-only) Returns the error status In cases of errors - more detailed error information can be seen in the error log files (specificity of error details vary by OAuth provider).
- userInfo: String
(read-only) Returns the user info as a String. Refer to the corresponding OAuth provider documentation regarding what the format might be (in most cases it would be JSON). The data returned would also vary depending on the configured 'scope'.
- getErrorStatus(): String
Returns the error status In cases of errors - more detailed error information can be seen in the error log files (specificity of error details vary by OAuth provider).
Returns:
- the error status
- getUserInfo(): String
Returns the user info as a String. Refer to the corresponding OAuth provider documentation regarding what the format might be (in most cases it would be JSON). The data returned would also vary depending on the configured 'scope'.
Returns:
- the user info