Some resources on CORS proxies
Posted by jpluimers on 2023/04/19
Having my background before the web-development era, and having lived mostly in back-ends or client-server front-ends, I sometimes need to really dig into things in order to understand them better.
CORS is such a thing, so below are some links to get started. My main interest is CORS proxies as they will force me do go deep and really get what is going on below the surface.
- Cross-origin resource sharing – Wikipedia
Cross-origin resource sharing (CORS) is a mechanism that allows restricted resources on a web page to be requested from another domain outside the domain from which the first resource was served.
- [Wayback/Archive] Cross-Origin Resource Sharing (CORS) introductory article describing the basics and the various headers/responses involved.
- [Wayback/Archive] enable cross-origin resource sharing in depth site including loads of documentation references and a test front-end:
- [Wayback/Archive] blocked by CORS policy? CORS Proxy is Solution 😎 – DEV Community
- [Wayback/Archive] What are CORS proxies, and when are they safe? | HTTP Toolkit
- [Wayback/Archive] Cors proxies – gist with regularly updated list of proxies
- [Wayback/Archive] 10 Free to Use CORS Proxies | Nordic APIs |
- [Wayback/Archive] bmpvieira/simple-corsproxy: Proxy to access resources that lack the Access-Control-Allow-Origin * header (last maintained in 2014)
- [Wayback/Archive] corihudson/crossorigin.me: A CORS proxy for everyone. (last maintained in 2018)
- [Wayback/Archive] martinkr/corsify: A tiny transparent proxy. The benefit: it adds the CORS-headers! Why? It prevents Cross Domain Errors. (maintained until at least 2021, maybe by now even more recently)
- [Wayback/Archive] Rob–W/cors-anywhere: CORS Anywhere is a NodeJS reverse proxy which adds CORS headers to the proxied request. (maintained until at least 2021, maybe by now even more recently)
- [Wayback/Archive] CORS Proxy API Documentation (joshirajesh448@gmail.com) | RapidAPI
Defunct CORS proxy sites:
- [Wayback/Archive] The domain name crossorigin.me is for sale / [Archive] crossorigin.me (@corsproxy) / Twitter
Used searches:
- [Wayback/Archive] corsify – Google Search
- [Wayback/Archive] “crossorigin.me” – Google Search
- [Wayback/Archive] cors proxy – Google Search
–jeroen
Leave a Reply