Configuration - adamqure/experience-cloud-etl-java-sdk GitHub Wiki

Project Configuration

Once the config file is created, put it into the project directory in the same folder as pom.xml.

Config.Json

For creating the config.json file, use the following format, with all blank strings replaced with correct values:

{

  "api_key":"",

  "client_secret":"",

  "ims_org":"",

  "sub":"",

  "secret":""

}

You can gather the necessary information for the config file by following the tutorial here.

The tutorial uses a few different names for things, so here's what each value should hold:

api_key                           API Key (Client ID)
client_secret                     Client secret
ims_org                           Organization ID
sub                               Technical account email
secret                            private.key

Example

{

  "api_key":"L0remIpsum",

  "client_secret":"L0rem-Ipsum-More",

  "ims_org":"L0REMIPSUM@AdobeOrg",

  "sub":"L0REMIPSUM@/techacct.adobe.com",

  "secret":"-----BEGIN PRIVATE KEY----L0rem\Ipsum-----END PRIVATE KEY-----"

}