Whatever message this page gives is out now! Go check it out!
.../mcp directly from the browser.Content-Type: application/json).Authorization: Bearer ...sessionid: ...x-gw-ims-org-id: ...* for everything.Access-Control-Allow-Origin: https://your-app.example.comAccess-Control-Allow-Origin: * for authenticated endpoints, especially with credentials.Access-Control-Allow-Methods: POST, OPTIONSContent-TypeAuthorizationsessionidx-gw-ims-org-id, x-api-keyAccess-Control-Allow-Headers: Content-Type, Authorization, sessionid, x-gw-ims-org-id, x-api-keyAccess-Control-Allow-Credentials: true.*.
Access-Control-Allow-Origin: https://app.example.com
Access-Control-Allow-Methods: POST, OPTIONS
Access-Control-Allow-Headers: Content-Type, Authorization, x-api-key
Access-Control-Max-Age: 600
allowedOrigins = [
"https://ops.example.com",
"https://analytics.example.com"
];
origin = request.headers["Origin"];
if (allowedOrigins.includes(origin)) {
response.headers["Access-Control-Allow-Origin"] = origin;
response.headers["Vary"] = "Origin";
}
Access-Control-Allow-Origin: http://localhost:3000
Access-Control-Allow-Methods: GET, POST, OPTIONS
Access-Control-Allow-Headers: Content-Type, Authorization, sessionid, x-api-key
Access-Control-Allow-Credentials: true
Access-Control-Allow-Origin header on both OPTIONS and POST responses. Access-Control-Allow-Origin: * with Access-Control-Allow-Credentials: true.