![]() |
BlackBerry Dynamics for .NET Maui
12.1.1.5
Runtime library for .NET Maui applications
|
BlackBerry Dynamics utility for managing authentication tokens and identity. More...
Public Member Functions | |
void | GetBBDAuthToken (string challenge, string serverName) |
string | GetDynamicsSharedUserID () |
void | GetEIDToken (string clientID, string scope, string resourceServer, bool refresh, BBDJWTokenCallback callback) |
Get JWT from BlackBerry Enterprise Identity (EID) server. More... | |
Events | |
EventHandler< BBDAuthTokenSuccessEventArgs > | BBDAuthTokenSuccess |
EventHandler< BBDAuthTokenFailureEventArgs > | BBDAuthTokenFailure |
BlackBerry Dynamics utility for managing authentication tokens and identity.
The BlackBerry Dynamics authentication token mechanism enables applications to utilize the user identification that takes place during BlackBerry Dynamics authorization processing. This enables an application server at the enterprise to authenticate the user without the need for entry of any additional credentials at the device or desktop.
See below for an overall description of the BlackBerry Dynamics authentication token mechanism. This class includes the programming interface for requesting tokens.
The BlackBerry Dynamics platform includes rigorous authentication of the end user. This is used when, for example, identifying whether the user is entitled to run the current application, and when applying security policies.
The BlackBerry Dynamics Authentication Token (BlackBerry Dynamics auth) mechanism enables applications to take advantage of the authentication processes of the platform.
BlackBerry Dynamics auth tokens can be requested by the application on the device or desktop. A token will only be issued if authorization processing has completed, and the end user's identity has been authenticated.
Once a token has been issued, the application can send the token to an application server at the back end. The token can then be checked by the application server, using a verification service provided by the BlackBerry Dynamics infrastructure.
The sequence of programming interfaces used in BlackBerry Dynamics auth is as follows.
This sequence validates the end user's identity, and the application server can then grant access to resources and other permissions.
Calling the verification service doesn't cause the token to be consumed.
Note that a BlackBerry Dynamics application can obtain the identifier of the end user from the BBDAppConfigKeyUserId value in the collection returned by the IBBDXamarin.GetApplicationConfig function.
A challenge string can be included in a BlackBerry Dynamics auth token request. The same challenge string will then be provided to the application server, in the response from the verification service.
The challenge string could have a number of uses for application developers. A typical usage could be to tie an instance of authentication to a previous access request, as follows:
In this process, a new random challenge string is generated on every resource access attempt. As a result, each BlackBerry Dynamics auth token can only be used one time. A more advanced algorithm might be to store the token and challenge string in the server, as a session identifier. To end a session, the server could delete the stored token and challenge string, effectively forcing the application to generate a new token, based on a new challenge string, when it next connected.
The verification service provides the challenge string to the application server in an HTTP header, which limits the character set that can be used safely. All letters and numerals in the ASCII range 32 to 126 can be used safely. Use of other characters isn't supported.
The BlackBerry Dynamics Shared User ID is a unique identifier for all containers which are provisioned for the same user on the same device.
Shared identifier will not be shared among applications from different keychain groups (iOS) or among different Work profiles on the same device (Android).
void BBDXamarinForms.Common.Interfaces.BBDUtility.IBBDUtility.GetBBDAuthToken | ( | string | challenge, |
string | serverName | ||
) |
Call this function to request a new BlackBerry Dynamics authentication token. Pass the challenge string and server name as parameters.
See under BlackBerry Dynamics Authentication Token Mechanism, above, for background on tokens and the challenge string.
This function requests a BlackBerry Dynamics authentication token from the BlackBerry Dynamics Runtime. The runtime might connect to the BlackBerry Dynamics infrastructure installed at the enterprise in order to service the request.
The request is asynchronous. If the request succeeds, the token will be passed in BBDAuthTokenSuccess event. If the attempt fails, an error will be passed in BBDAuthTokenFailure event instead.
challenge | String containing the challenge string for the token. The challenge string can be empty. |
serverName | String containing additional identification, by convention the fully qualified domain name of the application server for which a token is being requested. Whatever value is passed here will also be returned to the server as part of the token validation response. |
string BBDXamarinForms.Common.Interfaces.BBDUtility.IBBDUtility.GetDynamicsSharedUserID | ( | ) |
Call this method to get a BlackBerry Dynamics shared user identifier.
See under BlackBerry Dynamics Shared User Identifier, above, for background on shared id usage and characteristics.
If calculation of shared id is not possible, empty string will be returned
string
representation if id can be calculated, empty string
otherwisevoid BBDXamarinForms.Common.Interfaces.BBDUtility.IBBDUtility.GetEIDToken | ( | string | clientID, |
string | scope, | ||
string | resourceServer, | ||
bool | refresh, | ||
BBDJWTokenCallback | callback | ||
) |
Get JWT from BlackBerry Enterprise Identity (EID) server.
Call this method to request a BlackBerry Enterprise Identity JWT Bearer Token for authentication purposes. Pass a registered client ID string, scope string and closure reference (for calling back) as parameters. Tokens are cached until expired, but a new token from the server may be specified by setting the refresh flag true.
This method requests a BlackBerry Dynamics JWT from the BlackBerry Dynamics runtime. The runtime might connect to the BlackBerry Dynamics infrastructure installed at the enterprise in order to service the request.
The request is asynchronous.
clientID | String containing the client ID. |
scope | String containing the scope for the token. |
resourceServer | String containing optional resource server specifier (not currently used) |
refresh | A flag to force a new token to be fetched from the server. |
callback | Reference to BBDJWTokenCallback. |
EventHandler<BBDAuthTokenFailureEventArgs> BBDXamarinForms.Common.Interfaces.BBDUtility.IBBDUtility.BBDAuthTokenFailure |
Occurs when a request for a BlackBerry Dynamics authentication token has failed. Information about the error condition is passed in a parameter.
The request will have been made by calling the GetBBDAuthToken(string, string) function.
Invocation of this callback notifies the application that a token wasn't issued in response to the request.
Depending on the reason for failure, the function that is invoked could:
EventHandler<BBDAuthTokenSuccessEventArgs> BBDXamarinForms.Common.Interfaces.BBDUtility.IBBDUtility.BBDAuthTokenSuccess |
Occurs when a new BlackBerry Dynamics authentication token has been generated. Token generation is always in response to a call to the GetBBDAuthToken(string, string) function.
The function that is invoked could initiate sending of the token to the application server, out of band. The application server will then be able to utilize the token to authenticate the end user.