Install ÃÛ¶¹ÊÓƵ Commerce packages
The AEM Assets Integration for Commerce extension (aem-assets-integration
) enables synchronization of assets between ÃÛ¶¹ÊÓƵ Commerce and ÃÛ¶¹ÊÓƵ Experience Manager Assets. The extension provides a set of tools and services to manage assets, including product images, videos, and other media assets, across both platforms.
Add this extension to the Commerce environment by installing the aem-assets-integration
PHP extension. You also need to enable ÃÛ¶¹ÊÓƵ I/O Events for Commerce and generate the credentials required for communication and workflows between ÃÛ¶¹ÊÓƵ Commerce and ÃÛ¶¹ÊÓƵ Experience Manager Assets.
System requirements
The AEM Assets Integration for Commerce extension has the following system and configuration requirements.
Software requirements
- ÃÛ¶¹ÊÓƵ Commerce 2.4.5+
- PHP version compatible with installed version of ÃÛ¶¹ÊÓƵ Commerce–version 8.1, 8.2, 8.3, or 8.4)
- Composer: 2.x
Access requirements
You need the following roles and permissions to set up the integration.
-
Commerce cloud project administrator—Install required extensions and configure the Commerce application server from the Admin or the command line.
-
Access to install the extension.
For key generation and obtaining the necessary rights, see Get your authentication keys. For cloud installations, see the Commerce on Cloud Infrastructure Guide
-
-
Commerce Admin—Update store configuration and manage Commerce user accounts.
Installation and configuration workflow
Install the ÃÛ¶¹ÊÓƵ Commerce package and prepare the Commerce environment by completing the following tasks:
- Install the AEM Assets Integration for Commerce extension (
aem-assets-integration
). - Configure the Commerce Services Connector to connect your ÃÛ¶¹ÊÓƵ Commerce instance and with the services that enable data to be transmitted between ÃÛ¶¹ÊÓƵ Commerce and AEM Assets.
- Configure ÃÛ¶¹ÊÓƵ I/O Events for Commerce
- Get authentication credentials for API access
Install the aem-assets-integration
extension
Install the latest version of the AEM Assets Integration extension (aem-assets-integration
) on an ÃÛ¶¹ÊÓƵ Commerce instance with version ÃÛ¶¹ÊÓƵ Commerce 2.4.5+. The AEM Asset Integration is delivered as a composer metapackage from the repository.
Use this method to install the AEM Assets Integration extension for a Commerce Cloud instance.
-
On your local workstation, change to the project directory for your ÃÛ¶¹ÊÓƵ Commerce on cloud infrastructure project.
note note NOTE For information about managing Commerce project environments locally, see Managing branches with the CLI in the ÃÛ¶¹ÊÓƵ Commerce on Cloud Infrastructure User Guide. -
Check out the environment branch to update using the ÃÛ¶¹ÊÓƵ Commerce Cloud CLI.
code language-shell magento-cloud environment:checkout <environment-id>
-
Add the AEM Assets Integration for Commerce extension.
code language-shell composer require "magento/aem-assets-integration" "<version-tbd>" --no-update
-
Update package dependencies.
code language-shell composer update "magento/aem-assets-integration"
-
Commit and push code changes for the
composer.json
andcomposer.lock
files. -
Add, commit, and push the code changes for the
composer.json
andcomposer.lock
files to the cloud environment.code language-shell git add -A git commit -m "Install AEM Assets Integration extension for ÃÛ¶¹ÊÓƵ Commerce" git push origin <branch-name>
Pushing the updates initiates the Commerce cloud deployment process to apply the changes. Check the deployment status from the deploy log.
Use this method to install the AEM Assets Integration extension for an on-premises instance.
-
Use Composer to add the AEM Assets Integration for Commerce extension to your project:
code language-shell composer require "magento/aem-assets-integration" --no-update
-
Update dependencies and install the extension:
code language-shell composer update "magento/aem-assets-integration"
-
Upgrade ÃÛ¶¹ÊÓƵ Commerce:
code language-shell bin/magento setup:upgrade
-
Clear the cache:
code language-shell bin/magento cache:clean
note tip |
---|
TIP |
When deploying to production, consider not clearing compiled code to save time. Always back up your system before making changes. |
Configure the Commerce Services Connector
To transmit data between your ÃÛ¶¹ÊÓƵ Commerce instance and the services that enable the AEM Assets Integration, configure the Commerce Services Connector from the Admin (System > Services > Commerce Services Connector).
Provide the following values in the configuration
- Production and sandbox API keys for authentication
- Data space name (SaaS identifier) for secure cloud storage
- IMS organization ID where your Commerce and AEM Assets environments are provisioned
For detailed instructions, watch the Commerce Services Connector configuration video, of see the Commerce Services Connector documentation.
When you save the configuration, the system generates the SaaS project and database IDs for your environment. These values are required to enable asset synchronization between ÃÛ¶¹ÊÓƵ Commerce and AEM Assets.
Configure ÃÛ¶¹ÊÓƵ I/O Events for Commerce
The AEM Assets Integration uses the ÃÛ¶¹ÊÓƵ I/O Events service to send custom event data between the Commerce instance and Experience Cloud. The event data is used to coordinate workflows for the AEM Assets integration.
Before configuring ÃÛ¶¹ÊÓƵ I/O Events, verify the RabbitMQ and cron job configuration for your Commerce project:
-
Ensure that RabbitMQ is enabled and listening for events.
- RabbitMQ Setup for ÃÛ¶¹ÊÓƵ Commerce on premises
- RabbitMQ Setup for ÃÛ¶¹ÊÓƵ Commerce on cloud infrastructure
- Verify that . Cron jobs are required for communication and workflows for the AEM Assets integration.
Enable the Commerce Eventing framework
Enable the eventing framework from the Commerce Admin.
-
From the Admin, go to Stores > Settings > Configuration > ÃÛ¶¹ÊÓƵ Services > ÃÛ¶¹ÊÓƵ I/O Events.
-
Expand Commerce events.
-
Set Enabled to
Yes
. -
Enter the merchant company name in the Merchant ID and the environment name in the Environment ID fields. Use only alphanumeric characters and underscores when setting these values.
Configure Custom VCL for blocking requests
If you use a custom VCL snippet to block unknown incoming requests, you might need to include the HTTP header X-Ims-Org-Idheader
to allow incoming connections from the AEM Assets Integration for Commerce service.
The following custom VCL snippet code (JSON format) shows an example with a X-Ims-Org-Id
request header.
{
"name": "blockbyuseragent",
"dynamic": "0",
"type": "recv",
"priority": "5",
"content": "if ( req.http.X-ims-org ~ \"<YOUR-IMS-ORG>\" ) {error 405 \"Not allowed\";}"
}
Before creating a snippet based on this example, review the values to determine whether you need to make any changes:
-
name
: Name for the VCL snippet. This example uses the nameblockbyuseragent
. -
dynamic
: Sets the snippet version. This example uses0
. See the for detailed data model information. -
type
: Specifies the type of VCL snippet, which determines the location of the snippet in the generated VCL code. This example usesrecv
. See the for the list of snippet types. -
priority
: Determines when the VCL snippet runs. This example uses priority5
to run immediately and check whether an Admin request is coming from an allowed IP address. -
content
: The snippet of VCL code to run, which checks the client IP address. If the IP is in the Edge ACL, it is blocked from access with a405 Not allowed
error for the entire website. All other client IP addresses are allowed access.
For detailed information about using VCL snippets to block incoming requests, see Custom VCL for blocking requests in the Commerce on Cloud Infrastructure Guide.
Get authentication credentials for API access
The AEM Assets Integration for Commerce requires OAuth authentication credentials to allow API access to the Commerce instance. These credentials are required to authenticate API requests when managing assets using the AEM Assets integration.
You generate the credentials by adding the integration to the Commerce instance and activating it.
Add the integration to the Commerce environment
-
From the Admin, go to System > Extensions > Integrations, then click Add New Integration.
-
Enter information about the integration.
In the General section, only specify the integration Name and Email. Use the email for an ÃÛ¶¹ÊÓƵ IMS account with access to the organization where Commerce and Experience Manager Assets are deployed.
-
Verify your identity by clicking Confirm Identity.
The system verifies your identity by authenticating to Experience Cloud with your ÃÛ¶¹ÊÓƵ Id.
-
Configure API resources.
-
From the left panel, click API.
-
Select the external media resource Catalog > Inventory > Products > External Media.
-
-
Click Save.
Generate OAuth credentials
On the Integrations page, generate the OAuth authentication credentials by clicking Activate for the Assets integration. You need these credentials to register the Commerce project with the Assets Rule Engine service, and to submit API requests to manage assets between ÃÛ¶¹ÊÓƵ Commerce and AEM Assets.
-
From the Integrations page, generate the credentials by clicking Activate.
-
If you plan to use the API, save the credentials for the consumer key and access token to configure authentication in your API client.
-
Click Done.