IntegrationsOpenAPI
Creating Proxy
Avoid CORS problem
Introduction
A proxy server is useful for executing HTTP (fetch
) requests, as it doesn't have CORS constraints like on the browser.
We can use it for executing HTTP requests on the OpenAPI playground, when the target API endpoints do not have CORS configured correctly.
Warning
Do not use this on unreliable sites and API endpoints, the proxy server will
forward all received headers & body, including HTTP-only Cookies
and
Authorization
header.
Setup
Create a route handler for proxy server.
Follow the Getting Started guide if openapi
server is not yet configured.
And enable the proxy from createOpenAPI
.
Edit on GitHub
Last updated on