URL Proxy Worker 使用说明

基本用法

在URL后添加 ?url=目标网址

示例: https://ask.isdebug.com/?url=https://example.com

路径转发

支持路径转发,Worker路径会追加到目标URL后:

示例: https://ask.isdebug.com/some/path?url=https://api.example.com

实际请求: https://api.example.com/some/path

防缓存功能

自动添加时间戳参数 t=时间戳 防止缓存

API 调用示例

fetch('https://ask.isdebug.com/?url=https://api.github.com/users/octocat')
  .then(response => response.json())
  .then(data => console.log(data))