HomeDev GuideAPI Reference
Dev GuideAPI ReferenceUser GuideGitHubNuGetDev CommunitySubmit a ticketLog In
GitHubNuGetDev CommunitySubmit a ticket

Install and configure the native integration package

Describes how to install and configure the native integration for Optimizely Customized Commerce 13.

The native integration provides the product-specific setup when implementing personalization for Optimizely solutions.

The native integration package is available via the Optimizely NuGet feed. See also Install and configure recommendations.

After installing it, you must modify the configuration to include settings for your Product Recommendations environment. Recommendations reads its configuration from the<appSettings> section. The following keys are used.

Recommendation keys

KeyDescription
episerver:tracking.EnabledIndicates if the Tracking system will execute tracking.
episerver:personalization.BaseApiUrlThe URL of the Optimizely Product Recommendations environment to use. This should only contain the protocol and host name. Note: Never use UAT endpoints in production for this key.
episerver:personalization.SiteThe site name used to identify requests to the tracking server.
episerver:personalization.ClientTokenThe token used to authenticate tracking requests to the REST API.
episerver:personalization.AdminTokenThe token used to authenticate admin requests to the REST API.
episerver:personalization.RequestTimeout[Optional] Timeout for the REST calls. The default value is 30 seconds.
episerver:personalization.TrackingMode[Optional] The tracking mode to use. Acceptable values are ServerSide and ClientSide.
The default value is ServerSide.
To use the client side (JavaScript) tracking APIs, set the value to ClientSide.
episerver:personalization.SkipUserHostTracking
[New in EPiServer.Personalization.Common 3.0.0]
[Optional] Lets you exclude user IP address from tracking data. Set to True to omit IP address from tracking, which may reduce recommendation accuracy. Default value is False.
episerver:personalization.UsePseudonymousUserId
[New in EPiServer.Personalization.Common 3.0.0]
[Optional] Controls whether the pseudonymous user identifier is used instead of user email address in tracking data. Set to True to omit email address from tracking and use Contact Id instead. Default value is False.
episerver:personalization.CatalogFeedBatchSize[Optional] The number of products processed in one batch when the product feed is generated. A higher value can be faster but puts more pressure on the memory. The default value is 50.
episerver:personalization.CatalogNameForFeed[Optional] Select the catalog used to generate the product feed if you have multiple catalogs. If this value is not set, the first catalog is used.
Note: This property will be removed when Product feed support for multiple catalogs is added.

The export function has a few settings in addition to those above. Apply them via code on the default CatalogFeedSettings instance.

var catalogFeedSettings = ServiceLocator.Current.GetInstance<CatalogFeedSettings>(); 
    catalogFeedSettings.DescriptionPropertyName = "...";
PropertyDescription
ExcludedAttributes  Names of product properties to exclude from the catalog feed.
DescriptionPropertyName  The product feed requires each product to have a description. Set this to a property name you want to use as description. Default value is Description.
AssetGroupName  The first asset (ordered by SortOrder) in this group is used for the item's image link. The default value is default.

📘

Note

Differences between the authentication mechanism of EPiServer.ServiceAPI and EPiServer.Personalization.Commerce may lead to the incorrect functioning of user change tracking or catalog feed download. To avoid these problems, it is recommended to install EPiServer.ServiceAPI in a separate application.