Learn about the Merchant Center Proxy Router and how it works with Custom Applications.
This page applies only to Custom Applications.
When you use the Merchant Center, you can switch between the built-in applications and the externally developed applications available to your Project.
The URL of the Merchant Center always uses the same origin and only differs in the URI, depending on the Project and application.
For example:
https://mc.<cloud-region>.commercetools.com/:projectKey/dashboard
https://mc.<cloud-region>.commercetools.com/:projectKey/products
https://mc.<cloud-region>.commercetools.com/:projectKey/orders
https://mc.<cloud-region>.commercetools.com/:projectKey/custom-channels
This way, it looks like you're using a single web application, even though there are multiple applications underneath.
Server-side routing
When a user accesses the Merchant Center through the browser, the request to render the page goes through a server component called Merchant Center Proxy Router.
entryPointUriPath
(the identifier of the Custom Application). The request is then forwarded to the actual URL location of the Custom Application, which responds with the index.html
file.index.html
file. Conceptually it would look something like this: /* --> /index.html
.The request goes through the following steps:
- The user accesses the Merchant Center at the following path
/my-project/my-app
. - The request goes through the Merchant Center Proxy Router, which successfully matches the
my-app
identifier to themy-project
Project. - The configuration for the Custom Application
my-app
is loaded. - The request is forwarded to the URL of the server hosting the Custom Application.
- The server hosting the Custom Application responds with the
index.html
file. - The Custom Application
my-app
is rendered in the browser.
Forward requests
When the Merchant Center Proxy Router matches a request to a Custom Application, it forwards the original request URI to the Custom Application's configured URL.
# FROM
https://mc.<cloud-region>.commercetools.com/:projectKey/:entryPointUriPath/*
# TO
https://<app-url>/:projectKey/:entryPointUriPath/*
<app-url>
is the Custom Application production URL.index.html
file.For example, given the following data:
- Application production URL:
https://custom-channels.netlify.app
- Application
entryPointUriPath
:custom-channels
https://mc.<cloud-region>.commercetools.com/:projectKey/custom-channels
, the Merchant Center Proxy Router forwards the request to the following URL https://custom-channels.netlify.app/:projectKey/custom-channels
.index.html
file:https://custom-channels.netlify.app
https://custom-channels.netlify.app/:projectKey/custom-channels
https://custom-channels.netlify.app/:projectKey/custom-channels/new
https://custom-channels.netlify.app/:projectKey/custom-channels/123/teams
Client-side routing
index.html
file, the Custom Application uses client-side routing to handle the URI location path./:projectKey/:entryPointUriPath
. The value of the entryPointUriPath
is defined in the Custom Application config file and exposed via the window.app
runtime environment.entryPointUriPath
must match the value defined in the Custom Application configuration in the Merchant Center.entryPointUriPath
is custom-channels
and the user accesses the URL /my-project/custom-channels
, the Custom Application renders correctly because the route matches.//mc.<cloud-region>.commercetools.com/:projectKey/custom-channels
// custom-channels
https: window.app.entryPointUriPath;
// custom-channels
Page reloading behavior
Each Custom Application defines its routes. However, there might be links to other applications that the Custom Application routes won't match. The same applies when a user clicks on an item in the Merchant Center main menu.
entryPointUriPath
value in the Custom Application config file and the Merchant Center configuration.If there's a mismatch, the client-side routing will force a page reload to let the Merchant Center Proxy Router handle the route match, which renders the same application again, causing infinite reloads.
window.app.entryPointUriPath
in the browser's developer tools and compare it with the value in the URI path.//mc.<cloud-region>.commercetools.com/:projectKey/custom-channels
// custom-channels
https: window.app.entryPointUriPath;
// custom-channels-2
Security Headers
The Merchant Center Proxy Router enforces the following HTTP security headers when serving the response from the Custom Application location.
Some headers are added automatically, while others can be configured for additional customization.
Referrer-Policy
Referrer-Policy: same-origin
Strict-Transport-Security
By default, the header is set to a maximum age of 1 year and includes subdomains and preloading.
Strict-Transport-Security: max-age=31536000; includeSubDomains; preload
X-Content-Type-Options
X-Content-Type-Options: nosniff
X-Frame-Options
<frame>, <iframe>, <embed>, or <object>
from a different domain, protecting against clickjacking attacks.X-Frame-Options: SAMEORIGIN
X-XSS-Protection
X-XSS-Protection: 1; mode=block
Content-Security-Policy (CSP)
The default CSP comes with some default directives, including the application's URL domains, and others.
Permissions Policy
<iframe>
elements it contains. We provide a default configuration that restricts potentially sensitive features, but you can tailor it to your specific needs.Permissions-Policy: microphone=(self), camera=(self), payment=(self), usb=(self), geolocation=(self)
By default, no specific permissions are enforced unless explicitly configured in your customization's configuration.
Cross-Origin Resource Sharing (CORS)
The Merchant Center API has a set of CORS rules configured to allow only requests from trusted commercetools domains as well as requests with allowed HTTP headers.