Configure authentication specs for Self-Serve Sources (Batch SDK)
Authentication specs define how ÃÛ¶¹ÊÓƵ Experience Platform users can connect to your source.
The authSpec
array contains information on the authentication parameters required to connect a source to Platform. Any given source can support multiple different types of authentication.
Authentication specs
Self-Serve Sources (Batch SDK) supports OAuth 2 refresh codes and basic authentication. See the tables below for guidance on using an OAuth 2 refresh code and basic authentication
OAuth 2 refresh code
An OAuth 2 refresh code allows for secure access to an application by generating a temporary access token and a refresh token. The access token allows you to securely access your resources without having to provide other credentials, while the refresh token allows you to generate a new access token, once the access token expires.
code language-json |
---|
|
table 0-row-3 1-row-3 2-row-3 3-row-3 4-row-3 5-row-3 6-row-3 7-row-3 8-row-3 9-row-3 10-row-3 11-row-3 12-row-3 13-row-3 14-row-3 15-row-3 16-row-3 17-row-3 layout-auto | ||
---|---|---|
Property | Description | Example |
authSpec.name |
Displays the name of the supported authentication type. | oAuth2-refresh-code |
authSpec.type |
Defines the type of authentication supported by the source. | oAuth2-refresh-code |
authSpec.spec |
Contains information on the authentication’s schema, data type, and properties. | |
authSpec.spec.$schema |
Defines the schema used for the authentication. | http://json-schema.org/draft-07/schema# |
authSpec.spec.type |
Defines the data type of the schema. | object |
authSpec.spec.properties |
Contains information on the credentials used for the authentication. | |
authSpec.spec.properties.description |
Displays a brief description on the credential. | |
authSpec.spec.properties.type |
Defines the data type of the credential. | string |
authSpec.spec.properties.clientId |
The client ID associated with your application. The client ID is used in conjunction with your client secret to retrieve your access token. | |
authSpec.spec.properties.clientSecret |
The client secret associated with your application. The client secret is used in conjunction with your client ID to retrieve your access token. | |
authSpec.spec.properties.accessToken |
The access token authorizes your secure access to your application. | |
authSpec.spec.properties.refreshToken |
The refresh token is used to generate a new access token, when the access token expires. | |
authSpec.spec.properties.expirationDate |
Defines the expiration date of the access token. | |
authSpec.spec.properties.refreshTokenUrl |
The URL used to retrieve your refresh token. | |
authSpec.spec.properties.accessTokenUrl |
The URL used to retrieve your refresh token. | |
authSpec.spec.properties.requestParameterOverride |
Allows you to specify credential parameters to override when authenticating. | |
authSpec.spec.required |
Displays the credentials required in order to authenticate. | accessToken |
Basic authentication
Basic authentication is an authentication type that allows you to access your application by using a combination of your account username and your account password.
code language-json |
---|
|
table 0-row-3 1-row-3 2-row-3 3-row-3 4-row-3 5-row-3 6-row-3 7-row-3 8-row-3 9-row-3 10-row-3 layout-auto | ||
---|---|---|
Property | Description | Example |
authSpec.name |
Displays the name of the supported authentication type. | Basic Authentication |
authSpec.type |
Defines the type of authentication supported by the source. | BasicAuthentication |
authSpec.spec |
Contains information on the authentication’s schema, data type, and properties. | |
authSpec.spec.$schema |
Defines the schema used for the authentication. | http://json-schema.org/draft-07/schema# |
authSpec.spec.type |
Defines the data type of the schema. | object |
authSpec.spec.description |
Displays further information specific to your authentication type. | |
authSpec.spec.properties |
Contains information on the credentials used for the authentication. | |
authSpec.spec.properties.username |
The account username associated with your application. | |
authSpec.spec.properties.password |
The account password associated with your application. | |
authSpec.spec.required |
Specifies the fields required as mandatory values to be inputted in Experience Platform. | username |
API key authentication api-key-authentication
API key authentication is a secure method for accessing APIs by providing an API key and other relevant authentication parameters in requests. Depending on your specific API information, you can send the API key as part of the request header, query parameters, or body.
The following parameters are typically required when using API key authentication:
host
authKey1
authKey2
authKeyN
code language-json |
---|
|
Authentication behavior
You can use the restAttributes
parameter to define how the API key should be included in the request. For instance, in the example below, the headerParamName
attribute indicates that the X-Auth-Key1
should be sent as a header.
"restAttributes": {
"headerParamName": "X-Auth-Key1"
}
Each authentication key (such as authKey1
, authKey2
, etc.) can be associated with restAttributes
, to dictate how they are sent as requests.
If authKey1
has "headerParamName": "X-Auth-Key1"
. This means that the request header should include X-Auth-Key:{YOUR_AUTH_KEY1}
. Additionally, key name and the headerParamName
don’t necessarily have to be the same. For example:
- The
authKey1
can haveheaderParamName: X-Custom-Auth-Key
. This means that the request header will useX-Custom-Auth-Key
instead ofauthKey1
. - Conversely,
authKey1
can haveheaderParamName: authKey1
. This means that the request header name remains unchanged.
Example API format
GET /data?X-Auth-Key1={YOUR_AUTH_KEY1}&X-Auth-Key2={YOUR_AUTH_KEY2}
Example authentication spec
The following is an example of a completed authentication spec using a MailChimp Members source.
code language-json |
---|
|
Next steps
With your authentication specifications populated, you can proceed to configure the source specifications for the source that you want to integrate to Platform. See the document on configuring source specifications for more information.