How to use Cors anywhere to reverse proxy and add CORS headers

主宰稳场 提交于 2019-11-28 06:06:20

CORS Anywhere helps with accessing data from other websites that is normally forbidden by the same origin policy of web browsers. This is done by proxying requests to these sites via a server (written in Node.js, in this case).

"To use the API, just prefix the URL with the API URL.". That's really all of it. So, instead of requesting http://example.com, you will request https://cors-anywhere.herokuapp.com/http://example.com. CORS Anywhere will then make the request on behalf of your application, and add CORS headers to the response so that your web application can process the response.

The snippet from your question automatically modifies the URL for requests generated by XMLHttpRequest if needed. This snippet is not required, you can just prepend the CORS Anywhere API URL yourself, as done in the demo page.

The repository on Github (https://github.com/Rob--W/cors-anywhere) contains the source code of the server that powers CORS Anywhere. If you are a front-end dev, then that's all you need to know. If your application has many users, then you should host CORS Anywhere yourself, to avoid eating up all resources on the public CORS Anywhere server.

I defer to Rob, but here is my attempt at an answer to your question.

(Rob, please feel free to correct this answer; and thank you for CORS Anywhere. It recently saved me a heap of trouble.)

  1. Install Node.js.
  2. Install CORS Anywhere.

    For example, at a command prompt, enter:

    npm install cors-anywhere

    (This example command installs CORS Anywhere under the current directory, in node_modules\cors-anywhere.)

  3. Run CORS Anywhere.

    For example, at a command prompt, enter:

    node cors-anywhere.js

CORS Anywhere responds with a message like this:

Running CORS Anywhere on 127.0.0.1:8080

(The IP address 127.0.0.1 is localhost; your computer.)

You can specify the port in an environment variable, but I chose to edit the value in my local copy of cors-anywhere.js.

Now, suppose you want to use a non-CORS-enabled web service at the following URL:

http://remote.server.com:8085/service

Instead of using that original URL, you use the CORS Anywhere domain and port, followed by the original URL as the path component:

http://localhost:8080/remote.server.com:8085/service

(You can omit the leading http:// from the original URL.)

You can also check this out: https://github.com/Zibri/cloudflare-cors-anywhere

You can make your own in 3 minutes uploading the code to a free cloudflare worker!

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!