Class: Authorization

Class: Authorization

(abstract) Authorization

Class used to authorize a mobile user against Oracle Mobile Hub. Callers should use MobileBackend's authorization property.
Source:

Members

isAuthorized :Boolean

Is SDK authorized. Returns true if a user has been authorized, false otherwise. A user can be authorized by calling authenticate() or authenticateAnonymous().
Type:
  • Boolean
Source:

Methods

getAccessToken() → {String}

Get access token. Returns the current access token from user credentials.
Source:
Returns:
current access token from user credentials.
Type
String

onAuthentication(callback)

On authentication event. Subscribe for on authentication event
Parameters:
Name Type Description
callback Authorization~OnAuthenticationCallback The callback that will be called when authentication happen.
Source:

Type Definitions

OnAuthenticationCallback(token)

The authentication callback. This callback called when authentication happen.
Parameters:
Name Type Description
token String The authentication token received from server.
Source: