dojo.require("esri.IdentityManagerBase");
Description
(Added at v2.5)
This class provides the framework and helper methods required to implement a solution for managing user credentials.
The supported resources are:
- ArcGIS Server resources secured using token-based authentication. Note that only ArcGIS Server versions 10 SP 1 and greater are supported.
- Secured ArcGIS.com resources (i.e., web maps).
This class is not typically used by itself and does not include a user interface to obtain user input. The
esri/IdentityManager
class provides a complete out-of-the-box implementation.
Samples
Search for
samples that use this class.
Subclasses
Properties
Methods
checkAppAccess(resUrl, appId) | Deferred | Returns a credential if the user has already signed in to access the given resource and is allowed to do so when using the given application id. |
checkSignInStatus(resUrl) | Deferred | Returns the credential (via Deferred) if the user has already signed in to access the given resource. |
destroyCredentials() | None | Destroys all credentials. |
disablePostMessageAuth() | None | Disables the use of window.postMessage to serve authentication requests that was enabled by enablePostMessageAuth .
This should be called to prevent memory leaks in SPA routing apps when they need to transition routes. |
enablePostMessageAuth(resUrl?) | None | Enables the IdentityManager to serve authentication requests for the given resource from apps running in child iframes. |
findCredential(url, userId?) | Credential | Returns the credential for the resource identified by the specified url. |
findOAuthInfo(url) | OAuthInfo | Returns the OAuth configuration for the passed in Portal server URL. |
findServerInfo(url) | ServerInfo | Returns information about the server that is hosting the specified url. |
generateToken(serverInfo, userInfo, options?) | Deferred | Returns an object containing a token and its expiration time. |
getCredential(url, options?) | Deferred | Returns a Credential object that can be used to access the secured resource identified by the input url. |
initialize(json) | None | Call this method (during your application initialization) with JSON previously obtained from toJson method to re-hydrate the state of identity manager. |
isBusy() | Boolean | Returns true if the identity manager is busy accepting user input, i.e., the user has invoked signIn and is waiting for a response. |
oAuthSignIn(resUrl, serverInfo, OAuthInfo, options?) | Deferred | Sub-classes must implement this method if OAuth support is required. |
registerOAuthInfos(oAuthInfos) | None | Registers OAuth configurations. |
registerServers(serverInfos) | None | Register secure servers and the token endpoints. |
registerToken(properties) | None | Registers the given OAuth2 access token with the identity manager. |
setProtocolErrorHandler(handlerFunction) | None | When accessing secured resources, identity manager may prompt for username and password and send them to the server using a secure connection. |
signIn(url, serverInfo, options?) | Deferred | Sub-classes must implement this method to create and manager the user interface that is used to obtain a username and password from the end-user. |
toJson() | Object | Return properties of this object in JSON. |
Events
[ On Style Events | Connect Style Event ]
All On Style event listeners receive a single event object. Additionally, the event object also contains a 'target' property whose value is the object which fired the event.
Property Details
The suggested lifetime of the token in minutes. Default is 60 minutes.
Method Details
Returns a
credential if the user has already signed in to access the given resource and is allowed to do so when using the given application id. In addition, it also returns a boolean,
viewOnly
, property that indicates whether the application is only viewable. It defaults to
false
.
If the user has not signed in or does not have access, then it will be rejected and its error callback will be called.
Note: This scenario is generally not common unless you are building a licensed app. Also, please note that this method should only be used if your application is on the same domain as *.arcgis.com
or ArcGIS Enterprise Server.
Parameters:
<String > resUrl |
Required |
The resource URL. |
<String > appId |
Required |
The registered OAuth application id. |
Returns the credential (via Deferred) if the user has already signed in to access the given resource. If the user has not signed in, then the deferred will be rejected and its error callback will be called. (Added at v3.10)
Parameters:
<String > resUrl |
Required |
The resource URL. |
Destroys all credentials. (Added at v3.10)
Disables the use of
window.postMessage to serve authentication requests that was enabled by enablePostMessageAuth
.
This should be called to prevent memory leaks in SPA routing apps when they need to transition routes. Setting this this helps clean up and remove any window's message
event listeners that enablePostMessageAuth
added.
Please refer to the topic, Passing authentication to IFramed apps for additional information. The main differences are:
- The ArcGIS REST JS API's enablePostMessageAuth method's signature is different than what is provided in the ArcGIS API for JavaScript as explained here.
- Step three, i.e.
Embed App boots and Requests Auth
, does not apply when using the ArcGIS API for JavaScript.
(Added at v3.36)
Enables the IdentityManager to serve authentication requests for the given resource from apps running in child iframes. The only apps that will be allowed to request the credential are ones that are either running at *.arcgis.com, or are running at the same origin as the host app. Requests from other apps will be ignored.
Only one resource may be authenticated in this manner at any one time.
The URL of the resource should be used as the value of a parameter named
arcgis-auth-portal
that is included in the iframe's src URL.
The iframe's src URL should also include another parameter named
arcgis-auth-origin
with a value of
window.location.origin
.
Both of these parameter values should be URL-encoded using
encodeURIComponent
. These parameters are used by the
IdentityManager, or the
UserSession running in the iFrame app
when it needs the user's authentication to access a given resource.
Please refer to the topic,
Passing Authentication to IFramed apps for
additional information. The main differences are:
- The ArcGIS REST JS API's enablePostMessageAuth method's signature is different than what is provided in the ArcGIS API for JavaScript as explained here.
- Step three, i.e. Embed App boots and Requests Auth, does not apply when using the ArcGIS API for JavaScript.
(Added at v3.36) Parameters:
<String > resUrl |
Optional |
The resource URL. Default value is https://www.arcgis.com/sharing/rest |
Returns the credential for the resource identified by the specified url. Optionally you can provide a userId
to find credentials for a specific user.
Parameters:
<String > url |
Required |
The url to a server. |
<String > userId |
Optional |
The userId for which you want to obtain credentials. |
Returns the OAuth configuration for the passed in Portal server URL. (Added at v3.10)
Parameters:
<String > url |
Required |
The ArcGIS for Portal URL, for example "https://www.arcgis.com" for ArcGIS Online and "https://www.example.com/portal" for your in-house portal. |
Returns information about the server that is hosting the specified url.
Parameters:
<String > url |
Required |
The url to a server. |
Returns an object containing a token and its expiration time. You need to provide the ServerInfo object that contains token service URL and a user info object containing username and password. This is a helper method typically called by sub-classes to generate tokens.
Parameters:
<ServerInfo > serverInfo |
Required |
A ServerInfo object that contains a token service URL. |
<Object > userInfo |
Required |
A user info object containing a user name and password. |
<Object > options |
Optional |
Optional parameters. (As of 3.0). See the Object Specifications table below for the structure of the options object. |
Object Specifications: <options
>
<Boolean > isAdmin |
Required |
Indicates that the token should be generated using the token service deployed with the ArcGIS Server Admin API. The default value is false. |
Returns a
Credential object that can be used to access the secured resource identified by the input url. If required the user will be challenged for a username and password which is used to generate a token. Note: The IdentityManager sets up a timer to update the
Credential object with a new token prior to the expiration time. This method is typically called by
esri.request when a request fails due to an
invalid credentials
error.
Parameters:
<String > url |
Required |
The url for the secure resource. |
<Object > options |
Optional |
Optional parameters. (As of 3.0). See the Object Specifications table below for the structure of the options object. |
Object Specifications: <options
>
<Error > error |
Optional |
Error object returned by the server from a previous attempt to fetch the given url. |
<Boolean > oAuthPopupConfirmation |
Required |
If set to "false", the user will not be shown a dialog before the OAuth popup window is opened. The default is "true" since otherwise the browser is likely to block the popup from opening. Added at version 3.10 |
<Boolean > retry |
Optional |
Determines if the method should make additional attempts to get the credentials after a failure. |
<String > token |
Optional |
Token used for a previous unsuccessful attempt to fetch the given url. |
Call this method (during your application initialization) with JSON previously obtained from toJson
method to re-hydrate the state of identity manager. (Added at v2.8)
Parameters:
<Object > json |
Required |
The JSON obtained from the toJson method. |
Returns true if the identity manager is busy accepting user input, i.e., the user has invoked signIn
and is waiting for a response.
Sub-classes must implement this method if OAuth support is required. (Added at v3.10)
Parameters:
<String > resUrl |
Required |
The resource URL. |
<ServerInfo > serverInfo |
Required |
A ServerInfo object that contains the token service url. |
<OAuthInfo > OAuthInfo |
Required |
A OAuthInfo object that contains the authorization configuration. |
<Object > options |
Optional |
Optional parameters. See the Object Specifications table below for the structure of the options object. |
Object Specifications: <options
>
<Error > error |
Required |
Error object returned by the server from a previous attempt to fetch the given url. |
<Boolean > oAuthPopupConfirmation |
Required |
If set to "false", the user will not be shown a dialog before the OAuth popup window is opened. The default is "true" since otherwise the browser is likely to block the popup from opening. |
<String > token |
Required |
Token used for previous unsuccessful attempts to fetch the given url. |
Registers OAuth configurations. (Added at v3.10)
Parameters:
<OAuthInfo[] > oAuthInfos |
Required |
An OAuthInfos object that defines the OAuth configurations. |
Sample:
require([
"esri/arcgis/OAuthInfo", "esri/IdentityManager", ...
], function(OAuthInfo, esriId, ... ) {
var oAuthInfo = new OAuthInfo({
appId: "", //required parameter
... //specify optional parameters if needed
esriId.registerOAuthInfos([oAuthInfo]);
});
Register secure servers and the token endpoints.
Parameters:
<ServerInfo[] > serverInfos |
Required |
A ServerInfos object that defines the secure service and token endpoint. The Identity Manager makes its best guess to determine the location of the secure server and token endpoint so in most cases calling registerServers is not necessary. However, use this method to register the location if the location of your server or token endpoint is non-standard. |
Sample:
require([
"esri/ServerInfo", "esri/IdentityManager", ...
], function(ServerInfo, esriId, ... ) {
var serverInfo = new ServerInfo();
serverInfo.server = 'http://sampleserver6.arcgisonline.com';
serverInfo.hasServer = true;
serverInfo.tokenServiceUrl = 'http://sampleserver6.arcgisonline.com/arcgis/tokens/generateToken';
esriId.registerServers([serverInfo]);
});
Registers the given OAuth2 access token with the identity manager.
An access token can be obtained after the user logs in to ArcGIS Online through your application.
This process is described in the
Browser-based User Logins help topic and demonstrated in this
sample application.
Once registered with the identity manager, the access token will be passed along with all AJAX requests made by the application (on behalf of the logged in user) to access WebMaps and other items stored in ArcGIS Online.
(Added at v3.4) Parameters:
<Object > properties |
Required |
See the object specifications table below for the structure of the properties object. |
Object Specifications: <properties
>
<Number > expires |
Required |
Token expiration time specified as number of milliseconds since 1 January 1970 00:00:00 UTC. |
<String > server |
Required |
For ArcGIS Online or Portal, this is https://www.arcgis.com/sharing/rest or similar to https://www.example.com/portal/sharing/rest . |
<Boolean > ssl |
Required |
Set this to true if the user has an ArcGIS Online Organizational Account and the organization is configured to allow access to resources only through SSL. |
<String > token |
Required |
The access token. |
<String > userId |
Required |
The id for the user who owns the access token. |
When accessing secured resources, identity manager may prompt for username and password and send them to the server using a secure connection. Due to browser limitations under certain conditions, it may not be possible to establish a secure connection with the server if the application is being run over HTTP protocol (you can identify the protocol by looking at the URL bar in any browser). In such cases, the Identity Manager will abort the request to fetch the secured resource.
To resolve this issue, configure your web application server with HTTPS support and run the application over HTTPS. This is the recommended solution for production environments. However, for internal development environment that don't have HTTPS support, you can define a protocol error handler that allows the Identity Manager to continue with the process over HTTP protocol (insecure connection).
Note that identity manager will call your handler function with an object containing the following properties:
<String> resourceUrl |
The secure resource URL. |
<ServerInfo> serverInfo |
Object describing the server where the secure resource is hosted. |
Parameters:
<Function > handlerFunction |
Required |
The function to call when the protocol is mismatched. |
Sample: require([
"esri/IdentityManager", ...
], function(esriId, ... ) {
//Note: This should not be used in a production enviroment
esriId.setProtocolErrorHandler(function(){
console.log("Protocol mismatch error");
return window.confirm("Protocol mismatch error .... proceed anyway?");
});
});
Sub-classes must implement this method to create and manager the user interface that is used to obtain a username and password from the end-user. It should perform the following tasks:
- Challenge the user for a username and password.
- Generate a token and return it to the caller via Deferred object.
Parameters:
<String > url |
Required |
Url for the secure resource. |
<ServerInfo > serverInfo |
Required |
A ServerInfo object that contains the token service url. |
<Object > options |
Optional |
Optional parameters. (As of 3.0). See the Object Specifications table below for the structure of the options object. |
Object Specifications: <options
>
<Error > error |
Required |
Error object returned by the server from a previous attempt to fetch the given url. |
<Boolean > isAdmin |
Required |
Indicate that the token should be generated using the token service deployed with the ArcGIS Server Admin API. The default value is false. |
<String > token |
Required |
Token used for previous unsuccessful attempts to fetch the given url. |
Return properties of this object in JSON. It can be stored in a Cookie or persisted in HTML5 LocalStorage and later used to:
- Initialize the IdentityManager the next time user opens your application.
- Share the state of identity manager between multiple web pages of your website.
This way your users won't be asked to sign in repeatedly when they launch your app multiple times or when navigating between multiple web pages in your website.
(Added at v2.8)
Event Details
[ On Style Events | Connect Style Event ]
Fired when a credential is created. (Added at v3.10)
Sample:
require([IdentityManager], function(esriId) {
esriId.on("credential-create", function(e) {
console.log ('Credential: ', e.credential);
});
});
Fired when all credentials are destroyed. (Added at v3.10)
Fired when a credential is created. (Added at v3.10)
Fired when all credentials are destroyed. (Added at v3.10)