OAuthClientInfo QML Type

  • Esri.ArcGISRuntime
  • OAuthClientInfo
  • The client authentication information obtained from registering an application with a Portal or ArcGIS Online. More...

    Import Statement: import Esri.ArcGISRuntime
    Since: Esri.ArcGISRuntime 100.0
    Inherits:

    Object

    Properties

    Signals

    Detailed Description

    Applications can generate tokens that can access ArcGIS Online content and services using OAuth client information configured for OAuthMode::App.

    This information can also allow ArcGIS Online users to authorize your application to access ArcGIS Online content and services on their behalf by configuring with OAuthMode::User. Usage will be billed to that user and you can access that user's private content.

    Your Client Secret should never be accessible to users or other developers. Treat it like a password.

    See also JsonSerializable.

    Property Documentation

    clientId : string

    The client ID associated with the application.


    clientSecret : string

    The client secret associated with the application.


    [since Esri.ArcGISRuntime 100.11] culture : string

    Returns the culture code corresponding to the language to be used on the OAuth login page.

    The default culture code is based on the current culture set on the device/machine. Set it to empty string if you want to see the OAuth login page in the language corresponding to the culture set in the portal/organization settings.

    The format for the culture code is based on a language code and a country code, separated by a dash. Example: "en-US". If the argument contains an underscrore, the format is fixed to use a dash.

    The list of accepted languages can be requested using the REST API: https://developers.arcgis.com/rest/users-groups-and-items/languages.htm.

    This property was introduced in Esri.ArcGISRuntime 100.11.


    json : jsobject

    Client authentication information obtained from registering an application with a Portal or ArcGIS Online.


    oAuthMode : Enums.OAuthMode

    The Enums.OAuthMode used for obtaining an OAuth access token.

    See also Enums.OAuthMode.


    redirectUri : string

    The URL where the access token or authorization code will be delivered upon successful authorization.


    [since Esri.ArcGISRuntime 100.8] refreshTokenExchangeInterval : int

    The requested exchange interval (in minutes) for the refreshToken generated by the OAuth request.

    If refreshTokenExpirationInterval is set to -1 then refreshToken is considered to be permanent. However, the portal/server allows the refreshToken to be valid for maximum 90 days only. In order for it to be permanent, refreshToken token needs to exchanged every n minutes.

    This will be used only when refreshTokenExpirationInterval is set to -1.

    Note: If exchange interval is set 0 or less than 0 then it will be set to default value 1440 minutes (1 day).

    Note: If exchange interval is set more than 129600 minutes (90 days) then it will be clamped to 129600 minutes (90 days).

    Note: It is recommended to keep this interval as low as possible because long lived refresh tokens may increase the security risk.

    The default value is 1440 minutes (1 day).

    This property was introduced in Esri.ArcGISRuntime 100.8.


    [since Esri.ArcGISRuntime 100.6] refreshTokenExpirationInterval : int

    The requested expiration interval (in minutes) for the refresh token generated by the OAuth request.

    The max interval can be overridden by the portal administrator. If this is not set, then refreshToken is valid for two weeks.

    Note: For a permanent refresh token (if the portal supports it), use -1.

    This property was introduced in Esri.ArcGISRuntime 100.6.


    [read-only] unknownJson : jsobject

    Returns the unknown JSON from the source JSON.

    See also JsonSerializable.


    [read-only] unsupportedJson : jsobject

    Returns the unsupported data from the source JSON.

    See also JsonSerializable.


    Signal Documentation

    clientIdChanged()

    Emitted when the clientId property changes.

    Note: The corresponding handler is onClientIdChanged.


    clientSecretChanged()

    Emitted when the clientSecret property changes.

    Note: The corresponding handler is onClientSecretChanged.


    [since Esri.ArcGISRuntime 100.11] cultureChanged()

    Emitted when the culture property changes.

    Note: The corresponding handler is onCultureChanged.

    This signal was introduced in Esri.ArcGISRuntime 100.11.


    oAuthModeChanged()

    Emitted when the oAuthMode property changes.

    Note: The corresponding handler is onOAuthModeChanged.


    redirectUriChanged()

    Emitted when the redirectUri property changes.

    Note: The corresponding handler is onRedirectUriChanged.


    [since Esri.ArcGISRuntime 100.8] refreshTokenExchangeIntervalChanged()

    Emitted when the refreshTokenExchangeInterval property changes.

    Note: The corresponding handler is onRefreshTokenExchangeIntervalChanged.

    This signal was introduced in Esri.ArcGISRuntime 100.8.


    [since Esri.ArcGISRuntime 100.6] refreshTokenExpirationIntervalChanged()

    Emitted when the refreshTokenExpirationInterval property changes.

    Note: The corresponding handler is onRefreshTokenExpirationIntervalChanged.

    This signal was introduced in Esri.ArcGISRuntime 100.6.


    Your browser is no longer supported. Please upgrade your browser for the best experience. See our browser deprecation post for more details.