Episerver.ContentManagementApi 3.0.0 installation failure

  • Updated
Description

When you install Episerver.ContentManagementApi 3.0.0 package, you may get the below errors.

C001.JPG

Solutions

You could add the service configuration for ContentManagementApi in the startup.cs file. The document has not been updated but it will soon.

services.AddContentManagementApi(c =>
            {
                // Accept anonymous calls
                c.DisableScopeValidation = true;
            });