Service credentials
Integrations with Adobe Experience Manager (AEM) as a Cloud Service must be able to securely authenticate to AEM service. AEM’s Developer Console grants access to Service Credentials, which are used to facilitate external applications, systems and services to programmatically interact with AEM Author or Publish services over HTTP.
Service Credentials may appear similar Local Development Access Tokens but are different in a few key ways:
- Service Credentials are associated with Technical Accounts. Multiple service credentials can be active for a Technical Account.
- Service Credentials are not access tokens, rather they are credentials that are used to obtain access tokens.
- Service Credentials are more permanent (their certificate’s expire every 365 days), and do not change unless revoked, whereas Local Development Access Tokens expire daily.
- Service Credentials for an AEM as a Cloud Service environment map to a single AEM technical account user, whereas Local Development Access Tokens authenticate as the AEM user who generated the access token.
- An AEM as a Cloud Service environment can have up to ten technical accounts, each with their own Service Credentials, each mapping to discrete technical account AEM user.
Both Service Credentials and the access tokens they generate, and Local Development Access Tokens, should be kept secret. As all three can be used to obtain, access to their respective AEM as a Cloud Service environment.
Generate Service Credentials
Service Credentials generation is broken into two steps:
- A one-time Technical Account creation by an Adobe IMS Org administrator
- The download and use of the Technical Account’s Service Credentials JSON
Create a Technical Account
Service Credentials, unlike Local Development Access Tokens, require a Technical Account to be created by an Adobe Org IMS Administrator before they can be downloaded. Discrete Technical Accounts should be created for each client that requires programmatic access to AEM.
Technical Accounts are created once, however the Private Keys uses to manage Service Credentials associated with the Technical Account can be managed over time. For example, new Private Key/Service Credentials must be generated prior to the current Private Key’s expiration, to allow for uninterrupted access by a user of the Service Credentials.
-
Ensure you are logged in as a:
- Adobe IMS Org’s System Administrator
- Member of the AEM Administrators IMS Product Profile on AEM Author
-
Log in to Adobe Cloud Manager
-
Open the Program containing the AEM as a Cloud Service environment to integrate set up the Service Credentials for
-
Tap the ellipsis next to the environment in the Environments section, and select Developer Console
-
Tap in the Integrations tab
-
Tap the Technical Accounts tab
-
Tap Create new technical account button
-
The Technical Account’s Service Credentials are initialized and displayed as JSON
Once the AEM as Cloud Service environment’s Service Credentials have been initialized, other AEM developers in your Adobe IMS Org can download them.
Download Service Credentials
Downloading the Service Credentials follows the similar steps as the initialization.
-
Ensure you are logged in as a:
- Adobe IMS Org’s Administrator
- Member of the AEM Administrators IMS Product Profile on AEM Author
-
Log in to Adobe Cloud Manager
-
Open the Program containing the AEM as a Cloud Service environment to integrate with
-
Tap the ellipsis next to the environment in the Environments section, and select Developer Console
-
Tap in the Integrations tab
-
Tap the Technical Accounts tab
-
Expand the Technical Account to be used
-
Expand the Private Key whose Service Credentials will be downloaded, and verify that the status is Active
-
Tap on the … > View associated with the Private Key, which displays the Service Credentials JSON
-
Tap on the download button in the top-left corner to download the JSON file containing the Service Credentials value, and save the file to a safe location
Install the Service Credentials
The Service Credentials provide the details needed to generate a JWT, which is exchanged for an access token used to authenticate with AEM as a Cloud Service. The Service Credentials must be stored in a secure location accessible by the external applications, systems, or services that use it to access AEM. How and where the Service Credentials are managed are unique per customer.
For simplicity, this tutorial passes the Service Credentials in via the command line. However, work with your IT Security team to understand how to store and access these credentials in accordance with your organization’s security guidelines.
- Copy the downloaded the Service Credentials JSON to a file named
service_token.json
in the root of the project- Remember, never commit any credentials to Git!
Use Service Credentials
The Service Credentials, a fully formed JSON object, are not the same as the JWT nor the access token. Instead the Service Credentials (which contain a private key), are used to generate a JWT, which is exchanged with Adobe IMS APIs for an access token.
- Download the Service Credentials from AEM Developer Console to a secure location
- The External Application needs to programmatically interact with AEM as a Cloud Service environment
- The External Application reads in the Service Credentials from a secure location
- The External Application uses information from the Service Credentials to construct a JWT Token
- The JWT Token is sent to Adobe IMS to exchange for an access token
- Adobe IMS returns an access token that can be used to access AEM as a Cloud Service
- Access tokens can not change an expiry time.
- The External Application makes HTTP requests to AEM as a Cloud Service, adding the access token as a Bearer token to the HTTP requests’ Authorization header
- AEM as a Cloud Service receives the HTTP request, authenticates the request, and performs the work requested by the HTTP request, and returns an HTTP response back to the External Application
Updates to the External Application
To access AEM as a Cloud Service using the Service Credentials, the external application must be updated in three ways:
- Read in the Service Credentials
- For simplicity, the Service Credentials are read from the downloaded JSON file, however in real-use scenarios, Service Credentials must be securely stored in accordance to your organization’s security guidelines
- Generate a JWT from the Service Credentials
- Exchange the JWT for an access token
- When Service Credentials are present, the external application uses this access token instead of the Local Development Access Token, when accessing AEM as a Cloud Service
In this tutorial, Adobe’s @adobe/jwt-auth
npm module is used to both, (1) generate the JWT from the Service Credentials, and (2) exchange it for an access token, in a single function call. If your application is not JavaScript based, please review the sample code in other languages for how to create a JWT from the Service Credentials, and exchange it for an access token with Adobe IMS.
Read the Service Credentials
Review the getCommandLineParams()
so see how the Service Credentials JSON file is read using the same code used to read in the Local Development Access Token JSON.
function getCommandLineParams() {
...
// Read in the credentials from the provided JSON file
// Since both the Local Development Access Token and Service Credentials files are JSON, this same approach can be re-used
if (parameters.file) {
parameters.developerConsoleCredentials = JSON.parse(fs.readFileSync(parameters.file));
}
...
return parameters;
}
Create a JWT and exchange for an Access Token
Once the Service Credentials are read, they are used to generate a JWT which is then exchanged with Adobe IMS APIs for an access token. This access token can then be used to access AEM as a Cloud Service.
This example application is Node.js-based, so it’s best to use @adobe/jwt-auth npm module to facilitate the (1) JWT generation and (20 exchange with Adobe IMS. If your application is developed using another language, please review the appropriate code samples on how to construct the HTTP request to Adobe IMS using other programming languages.
-
Update the
getAccessToken(..)
to inspect the JSON file contents and determine if it represents a Local Development Access Token or Service Credentials. This can be easily achieved by checking for the existence of the.accessToken
property, which only exists for Local Development Access Token JSON.If Service Credentials are provided, the application generates a JWT and exchanges it with Adobe IMS for an access token. Use the @adobe/jwt-auth’s
auth(...)
function which generates a JWT and exchanges it for an access token in a single function call. The parameters toauth(..)
method are a JSON object comprised of specific information available from the Service Credentials JSON, as described below in code.
async function getAccessToken(developerConsoleCredentials) {
if (developerConsoleCredentials.accessToken) {
// This is a Local Development access token
return developerConsoleCredentials.accessToken;
} else {
// This is the Service Credentials JSON object that must be exchanged with Adobe IMS for an access token
let serviceCredentials = developerConsoleCredentials.integration;
// Use the @adobe/jwt-auth library to pass the service credentials generated a JWT and exchange that with Adobe IMS for an access token.
// If other programming languages are used, please see these code samples: https://www.adobe.io/authentication/auth-methods.html#!AdobeDocs/adobeio-auth/master/JWT/samples/samples.md
let { access_token } = await auth({
clientId: serviceCredentials.technicalAccount.clientId, // Client Id
technicalAccountId: serviceCredentials.id, // Technical Account Id
orgId: serviceCredentials.org, // Adobe IMS Org Id
clientSecret: serviceCredentials.technicalAccount.clientSecret, // Client Secret
privateKey: serviceCredentials.privateKey, // Private Key to sign the JWT
metaScopes: serviceCredentials.metascopes.split(','), // Meta Scopes defining level of access the access token should provide
ims: `https://${serviceCredentials.imsEndpoint}`, // IMS endpoint used to obtain the access token from
});
return access_token;
}
}
Now, depending on which JSON file - either the Local Development Access Token JSON or the Service Credentials JSON - is passed in via tha `file` command line parameter, the application will derive an access token.
Remember, that while the Service Credentials expire every 365 days, the JWT and corresponding access token expire frequently, and need to be refreshed before they expire. This can be done by using a `refresh_token` [provided by Adobe IMS](https://www.adobe.io/authentication/auth-methods.html#!AdobeDocs/adobeio-auth/master/OAuth/OAuth.md#access-tokens).
-
With these changes in place, the Service Credentials JSON was downloaded from the AEM Developer Console and for simplicity, saved as
service_token.json
in the same folder as thisindex.js
. Now, let’s execute the application replacing the command-line parameterfile
withservice_token.json
, and updating thepropertyValue
to a new value so the effects are apparent in AEM.code language-shell $ node index.js \ aem=https://author-p1234-e5678.adobeaemcloud.com \ folder=/wknd-shared/en/adventures/napa-wine-tasting \ propertyName=metadata/dc:rights \ propertyValue="WKND Restricted Use" \ file=service_token.json
The output to the terminal looks like:
code language-shell 200 - OK @ https://author-p1234-e5678.adobeaemcloud.com/api/assets/wknd-shared/en/adventures/napa-wine-tasting.json 403 - Forbidden @ https://author-p1234-e5678.adobeaemcloud.com/api/assets/wknd-shared/en/adventures/napa-wine-tasting/AdobeStock_277654931.jpg.json 403 - Forbidden @ https://author-p1234-e5678.adobeaemcloud.com/api/assets/wknd-shared/en/adventures/napa-wine-tasting/AdobeStock_239751461.jpg.json 403 - Forbidden @ https://author-p1234-e5678.adobeaemcloud.com/api/assets/wknd-shared/en/adventures/napa-wine-tasting/AdobeStock_280313729.jpg.json 403 - Forbidden @ https://author-p1234-e5678.adobeaemcloud.com/api/assets/wknd-shared/en/adventures/napa-wine-tasting/AdobeStock_286664352.jpg.json
The 403 - Forbidden lines, indicate errors in the HTTP API calls to AEM as a Cloud Service. These 403 Forbidden errors occur when attempting to update the assets’ metadata.
The reason for this is the Service Credentials-derived access token authenticates the request to AEM using an auto-created technical account AEM user, that by default, only has read access. To provide the application write access to AEM, the technical account AEM user associated with the access token must be granted permission in AEM.
Configure access in AEM
The Service Credentials-derived access token uses a technical account AEM User that has membership in the Contributors AEM user group.
Once the technical account AEM user exists in AEM (after first HTTP request with the access token), this AEM user’s permissions can be managed the same as other AEM users.
- First, locate the technical account’s AEM login name by opening the Service Credentials JSON downloaded from AEM Developer Console, and locate the
integration.email
value, which should look similar to:12345678-abcd-9000-efgh-0987654321c@techacct.adobe.com
. - Log in to the corresponding AEM environment’s Author service as an AEM Administrator
- Navigate to Tools > Security > Users
- Locate the AEM user with the Login Name identified in Step 1, and open its Properties
- Navigate to the Groups tab, and add the DAM Users group (whom as write access to assets)
- See the list of AEM provided user groups to add the service user to for the optimal permissions. If no AEM provided user group is sufficient, create your own, and add the appropriate permissions.
- Tap Save and Close
With the technical account permitted in AEM to have write permissions on assets, rerun the application:
$ node index.js \
aem=https://author-p1234-e5678.adobeaemcloud.com \
folder=/wknd-shared/en/adventures/napa-wine-tasting \
propertyName=metadata/dc:rights \
propertyValue="WKND Restricted Use" \
file=service_token.json
The output to the terminal looks like:
200 - OK @ https://author-p1234-e5678.adobeaemcloud.com/api/assets/wknd-shared/en/adventures/napa-wine-tasting.json
200 - OK @ https://author-p1234-e5678.adobeaemcloud.com/api/assets/wknd-shared/en/adventures/napa-wine-tasting/AdobeStock_277654931.jpg.json
200 - OK @ https://author-p1234-e5678.adobeaemcloud.com/api/assets/wknd-shared/en/adventures/napa-wine-tasting/AdobeStock_286664352.jpg.json
200 - OK @ https://author-p1234-e5678.adobeaemcloud.com/api/assets/wknd-shared/en/adventures/napa-wine-tasting/AdobeStock_239751461.jpg.json
200 - OK @ https://author-p1234-e5678.adobeaemcloud.com/api/assets/wknd-shared/en/adventures/napa-wine-tasting/AdobeStock_280313729.jpg.json
Verify the changes
- Log into the AEM as a Cloud Service environment that has been updated (using the same host name provided in the
aem
command-line parameter) - Navigate to the Assets > Files
- Navigate it the asset folder specified by the
folder
command-line parameter, for example WKND > English > Adventures > Napa Wine Tasting - Open the Properties for any asset in the folder
- Navigate to the Advanced tab
- Review the value of the updated property, for example Copyright which is mapped to the updated
metadata/dc:rights
JCR property, which now reflects the value provided in thepropertyValue
parameter, for example WKND Restricted Use
Congratulations!
Now that we’ve programmatically accessed AEM as a Cloud Service using a local development access token, and a production-ready service-to-service access token!