HomeDev guideAPI ReferenceGraphQL
Dev guideUser GuideGitHubNuGetDev CommunitySubmit a ticketLog In
GitHubNuGetDev CommunitySubmit a ticket

CMS + CMP publishing integration

Describes how to install and configure the publishing experience between CMS and CMP.

This integration connects the Optimizely Content Management System (CMS) and Optimizely Content Marketing Platform (CMP). When configured, teams can manage the content production lifecycle of CMS pages using tasks and workflows in CMP.

📘

Prerequisites

  • CMS v12.28+
  • CMP
  • Opti ID

Remove prior versions

For beta users – Remove the prior version of this integration and dependencies before installing.

dotnet remove package EPiServer.CMS.OrchestrateIntegration

# If explicitly installed, also run:
dotnet remove package Optimizely.Content.Service
dotnet remove package Optimizely.Cmp.Client 

Install the package

The package installs the dependencies needed for the CMS + CMP publishing integration.

dotnet add package Optimizely.Cms.Cmp.Publishing

Create an app in CMP

  1. In CMP, go to Settings > Apps and Webhooks or select your avatar > Apps and Webhooks. This requires an administrator role in CMP. Trial accounts do not have access to advanced settings.

  2. Click Register App to create an app. This generates a Client ID and Secret, which you will use in CMS for Optimizely:Cmp:Client:ClientId and Optimizely:Cmp:Client:ClientSecret.

    1. Enter a Name, such as CMS + CMP Publishing Integration.

    2. (Optional) Add a description.

    3. Allow emails to be exposed in API responses.

    4. Set the App Role.

    5. Enter a Homepage URL for the CMS site you connect to.

    6. Enter the Authorization Callback URL using the same URL as the previous step; this may be used in future versions.

    7. Click Create App

Configure the package in CMS

In CMS, add or modify the following code block in appsettings.json. This OauthClient MUST be the first listed in the Optimizely.Cms.Service block CMS to use this client automatically and for this integration to work properly.

📘

Note

This is separate from the Episerver block.

"Optimizely": {
  "Cms": {
    "Service": {
      "OauthClients": [
        {
          // Set as first client if using multiple clients in CMS. You should use
          // this ClientID to identify it. This will be used in when creating the
          // integration in CMP.
          "ClientId": "cmp_publishing_integration",
          "ClientSecret": "a secret",
          // If using OptiID, set AllowActAs to true. If not, the integration will rely on
          // permissions set for the above OAuth user for ALL CMP users.
          "AllowActAs": true,
          // If the site is NOT on DXP, uncomment and replace this with a 32 character string
          // "SigningKey": "ABCDEFGHKLMANOPQABCDEFGHKLMANOPQ."
        }
      ]
    }
  },
  "Cmp": {
    "Client": {
      // This ClientId/ClientSecret will be provided when you create an app in CMP
      "ClientId": "Replace with CMP Client Id settings",
      "ClientSecret": "Replace with CMP Client Secret settings"
     }
  }
}	
  • Cms:Service:OauthClients – Lets CMP connect to CMS and manage content. This ClientId and ClientSecret are used when enabling the integration in CMP.

    • ClientId – You should use cmp_publishing_integration (but you can use any ID you want).
    • ClientSecret – Set this to any secret you want.
    • AllowActAs – If Opti ID is enabled, the integration acts as the user currently logged in so CMS and CMP know which authorized user is making changes, publishing content, or updating anything else in the CMS.
    • SigningKey – If you are not on Optimizely Digital Experience Platform (DXP), enter a 32-character signing key.
  • Cmp:Client – Lets CMS connect to CMP and provide real-time events and information when changes are made. This same block and credentials can be used for the CMP DAM Asset Picker. Use the credentials generated when you created the app in CMP in the prior section.

    • ClientId – Use from CMP app.
    • ClientSecret – Use from CMP app.

Add the following to your startup class to let the CMS editor load in CMP. It also changes how some site cookies work, but it is up to a developer to implement a content security policy.

private readonly IWebHostEnvironment _webHostingEnvironment;
private readonly IConfiguration _configuration;
public Startup(IWebHostEnvironment webHostingEnvironment, IConfiguration configuration) {
  _webHostingEnvironment = webHostingEnvironment;
  _configuration = configuration;
}
public void ConfigureServices(IServiceCollection services) {
  ...
  // Added this after .AddCms()
  services.AddCmsCmpPublishing();

  // Allow the quick editor to be embedded into CMP via an iframe
  services.AddAntiforgery(options => {
    options.Cookie.SameSite = SameSiteMode.None;
    options.Cookie.SecurePolicy = CookieSecurePolicy.Always;
  });
  
  // If using ASP.NET Identity
  // Allow the quick editor to be embedded into CMP via an iframe
  services.ConfigureApplicationCookie(options => {
    options.Cookie.SameSite = SameSiteMode.None;
    options.Cookie.SecurePolicy = CookieSecurePolicy.Always;
  });

  // If using OptiID
  // Allow the quick editor to be embedded into CMP via an iframe
  services.Configure < CookieAuthenticationOptions > (OptimizelyIdentityDefaults.CookieSchemeName, options => {
    options.Cookie.SameSite = SameSiteMode.None;
    options.Cookie.SecurePolicy = CookieSecurePolicy.Always;
  });
  if (_webHostingEnvironment.IsProduction()) {
    services.AddCmsCloudPlatformSupport(_configuration);
  }
}
public void Configure(IApplicationBuilder app, IWebHostEnvironment env) {
  ...
  // NOTE! Add these before app.UseAuthorization()
  app.UseCors();
 	app.UseCmsCmpPublishingPreviewLinks();
  ...
}

If you run CMS on a non-DXP environment running in development mode, also configure the following in your startup class:

// To allow use of AddDevelopmentSigningCredentials. 
using Optimizely.Cms.DependencyInjection;
using Optimizely.Cms.Preview1;

if (_webHostingEnvironment.IsDevelopment()) {
  // This automatically configures dev signing credentials to call Integration API
  services.Configure < CmsServiceOptions > (o => {
    o.AddDevelopmentSigningCredentials();
  });
}

Configure available languages in CMS

This integration uses the available languages configured for your content. To configure available languages, go to Admin > Configure Website Languages. Ensure that at least one language is set to Enabled.

When completed, go to Edit and select your website's Start Page. Select the Tools dropdown and click Language Settings.

From the window that opens, confirm that at least one available language is selected for your editors:

Click Save to set the available languages and close the window.

Configure access rights in CMS

The configured OAuth client needs access to content in CMS. To configure access rights for Optimizely:Cms:Service:OauthClients:0:ClientId, go to Admin > Access Rights in CMS.

You should grant the minimum access rights needed to integrate CMP and CMS.

  1. Grant access to the root folder.
    1. Select the root folder.
    2. Scroll down and click Add User/Group.
    3. Select the Client ID configured in appsettings.json.
    4. Assign Read permission to the Client ID.
    5. Save access rights.
  2. Grant access to your site start folder. Do this for each start folder you want to connect to CMP.
    1. Select your start folder.
    2. Scroll down and click Add User/Group.
    3. Select the Client ID configured in appsettings.json.
    4. Assign Read, Create, Change, Delete, and Publish permissions to the Client ID.
    5. Save access rights.

📘

Note

Repeat this process for any folders that you want to manage from CMP and do not inherit their access settings from the start folder.

Enable the integration in CMP

  1. In CMP, go to Settings > Integrations or select your avatar > Integrations. This requires an administrator role in CMP. Trial accounts do not have access to advanced settings.
  2. Select the Website, CMS & Feed tab at the top of the page.
  3. Click Add and select Optimizely CMS12
    1. Enable Allow Act As User to enable OptiID support. (This label will change in the future.)
    2. Enter a Website Name. You should enter something short and identifiable. It is shown when adding content to a Task.
    3. Enter a Website URL. This is the publicly accessible URL for your CMS site, such as, https://www.optimizely.com.
    4. Enter the Client ID from Optimizely:Cms:Service:OauthClients:0:ClientID
    5. Enter the Client Secret from Optimizely:Cms:Service:OauthClients:0:ClientSecret
    6. Select an Environment. This is a decorative label shown in the integration list.
    7. Click Save
  4. Activate the integration by opening your integration from the list and toggle the Active switch.
  5. Configure aliases for the integration. This provides a list of favorites to users when creating content. See Set CMS destination folders in CMP.
    1. Open the Publishing tab in the integration.
    2. Select a folder from CMS and assign a user-friendly name.
    3. Click Save.

Enable support for CMP analytics in CMS (optional)

If you want CMP analytics in CMS, add CmpTrackingPixel to CMS content types that should support tracking; the property is automatically assigned for content published from CMP.

The following procedure uses the CMS Alloy sample site. You must customize the procedure for your implementation of templates in CMS.

  1. Add a reference to the analytics JavaScript; you can retrieve the URL for a specific account from CMP. In Alloy, add it to _Root.layout.

    <script async src="//analytics.newscred.com/analytics_<CMP_ID>.js"></script>
    
  2. Add the property to page types that should support analytics. In Alloy, add the property to SitePageData.cs to have it on all page types.

    [Display(GroupName = SystemTabNames.Settings, Order = 400)]
    [CultureSpecific]
    public virtual string CmpTrackingPixel {
      get;
      set;
    }
    
  3. Add the tracking pixel to the templates. In Alloy, add the tracking pixel into _Root.layout to render it on all pages.

    @if (Model.CurrentPage.CmpTrackingPixel != null) {  
      <img src="@Model.CurrentPage.CmpTrackingPixel" />  
    }
    

Troubleshoot

  • I am running my CMS site locally for development. Can I still connect it to CMP?
    Yes! By using a service such as Ngrok to provide a tunnel to a publicly accessible URL, CMP can connect to your CMS site.

  • My dropdown is blank when I try to configure a destination mapping. What should I do?

    1. Check the credentials in the Information tab to match the OAuth Client Credentials.
    2. Check to ensure the OAuth Client has access rights to your site.
    3. Confirm that your CMS site is publicly accessible.
    4. Check your Network call log for a structure request made when interacting with the Folder field or your Console log for any errors that may indicate a client-side connection issue.
  • I use multiple environments. Which one should I connect to?

    1. You should connect the environment that your team uses to create and publish content today. Typically that's your production environment, but there are cases where teams choose other environments.
    2. If you use a pre-production or staging environment and perform a push up to production in releases, you should connect the pre-production environment.

If you have any other questions, contact Optimizely Support.