代理地址: https://proxy.iprouter.top/
支持常见的 GET/POST/PUT/PATCH/DELETE 默认处理 CORS 自动隐藏客户端真实 IP
比如要代理 V2EX 完整的请求地址为 https://proxy.iprouter.top/https://www.v2ex.com/
每天有限额,单个 IP 2000 次请求
1
vueli 300 天前
开源地址在哪
|
2
hongfs 300 天前
|
3
chocolatesir 300 天前 via Android 3
开源新定义。
|
4
actar 300 天前
|
5
InDom 300 天前
|
6
InDom 300 天前
这个锅得 V2EX 背...
|
8
collen 300 天前
好好好,还有什么福利吗
|
9
imzcg2 300 天前
|
10
xingchenxf 300 天前
开源代码在哪?
|
11
svon OP @xingchenxf
@vueli const main = async function (request: Request): Promise<Response> { // 获取客户端传入的数据 // 需要跟进请求类型与 ContentType 来做处理 const body = await request.arrayBuffer(); // 代理请求 const res = await fetch(request.url, { body: body, method: request.method, // 如果要隐藏客户端 IP, 需重新构造 Headers headers: new Headers(request.headers), }); const status = res.status; const statusText = res.statusText; const value = await res.arrayBuffer(); return new Response(value, { status, statusText, headers: res.headers, }); } |
12
wusheng0 300 天前 via Android 1
重新定义 开源
重新定义 福利 |
13
nodejsexpress 300 天前
@svon 这个是 node.js 代码? 怎么没头没尾的?
|
14
program9527 300 天前 via Android
跟我的 https://pd.zwc365.com 差不多啊😯
|
15
fuzzsh 300 天前 via Android
@nodejsexpress cloud flare workers
|
16
cybort 299 天前 via Android
你这属于打广告
|