在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=时间戳 防止缓存
fetch('https://ask.isdebug.com/?url=https://api.github.com/users/octocat')
.then(response => response.json())
.then(data => console.log(data))