Child pages
  • OAuthServiceBuilder
Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 2 Next »

Refresh page May 03, 2024 06:29

Supported Clients
NGClient

Methods Summary
OAuthService build(api) Creates an OAuth service that can be used to obtain an access token and access protected data.
OAuthServiceBuilder callback(callback, timeout) Configure the service with a callback function to be executed when the service is ready to use.
OAuthServiceBuilder clientSecret(clientSecret) Set the client secret of the application.
OAuthServiceBuilder deeplink(deeplink) OPTIONAL This is a way to override the default deeplink method name, which is 'deeplink_svy_oauth'.
OAuthServiceBuilder defaultScope(scope) Request always the same scope.
OAuthServiceBuilder scope(scope) Request any unique scope per each access token request.
OAuthServiceBuilder state(state) Configures the anti forgery session state.
OAuthServiceBuilder tenant(tenant) Set the tenant identifiers/organization if the API supports it (e.

Methods Details

build(api)

Creates an OAuth service that can be used to obtain an access token and access protected data.

Parameters

String api an OAuth provider id, see plugins.oauth.OAuthProviders

Returns

Supported Clients

NGClient

Sample

 

callback(callback, timeout)

Configure the service with a callback function to be executed when the service is ready to use.
After the access token is returned by the server, this callback function is executed.

Parameters

Function callback a function in a scope or form
Number timeout max number of seconds in which the callback method should be executed (with success or error message) Please note that the timeout should be enough for the user to login and accept permissions.

Returns

Supported Clients

NGClient

Sample

 

clientSecret(clientSecret)

Set the client secret of the application.

Parameters

String clientSecret a secret known only to the application and the authorization server

Returns

Supported Clients

NGClient

Sample

 

deeplink(deeplink)

OPTIONAL This is a way to override the default deeplink method name, which is 'deeplink_svy_oauth'.
The deeplink method is a global method that receives the code needed to obtain the access token from the OAuth provider.

NOTE: The deeplink method name is strongly related to the redirect url configured for the application.
If the OAuth provider (eg. Microsoft AD, Likedin) requires to configure a full redirect url then it should be of the form:
https://example.com/<solution_name>/m/<deeplinkmethod> - where <deeplinkmethod> is the name configured with the service builder
https://example.com/<solution_name>/m/deeplink_svy_oauth - if the deeplink method name was not overridden

If the deeplink method with the provided name does not exist in the solution,
then a default deeplink method is generated under the hood with the solution model.
If a global method with the provided name already exists in the solution, then it should set the access
token on the service and handle possible errors.

Parameters

String deeplink a global scope method name

Returns

Supported Clients

NGClient

Sample

 

defaultScope(scope)

Request always the same scope.
Scope is a mechanism in OAuth 2.0 to limit an application's access to a user's account.
An application can request one or more scopes, separated by space.
This information is then presented to the user in the consent screen, and the access token issued
to the application will be limited to the scopes granted.

Parameters

String scope the default scope

Returns

Supported Clients

NGClient

Sample

 

scope(scope)

Request any unique scope per each access token request.
Scope is a mechanism in OAuth 2.0 to limit an application's access to a user's account.
An application can request one or more scopes, separated by space.
This information is then presented to the user in the consent screen, and the access token issued
to the application will be limited to the scopes granted.

Parameters

String scope one or multiple scopes separated by space

Returns

Supported Clients

NGClient

Sample

 

state(state)

Configures the anti forgery session state. This is required in some APIs (like Facebook's).

Parameters

String state ;

Returns

Supported Clients

NGClient

Sample

 

tenant(tenant)

Set the tenant identifiers/organization if the API supports it (e.g.Microsoft AD)

Parameters

String tenant ;

Returns

Supported Clients

NGClient

Sample

 

  • No labels