yl.fopath.com - Hostinger共享虚拟主机代理服务
代理服务状态: 检查中...
https://yl.fopath.com/proxy.php?url=https://example.com
https://yl.fopath.com/proxy.php
{
"url": "https://api.example.com/data",
"method": "GET",
"headers": {
"Authorization": "Bearer token"
},
"timeout": 30
}
https://yl.fopath.com/proxy_simple.php?url=https://example.com
fetch('https://yl.fopath.com/proxy.php', {
method: 'POST',
headers: {
'Content-Type': 'application/json'
},
body: JSON.stringify({
url: 'https://api.example.com/data',
method: 'GET',
headers: {
'Authorization': 'Bearer your-token'
}
})
})
.then(response => response.json())
.then(data => console.log(data))
.catch(error => console.error('Error:', error));
import requests
response = requests.post('https://yl.fopath.com/proxy.php', json={
'url': 'https://api.example.com/data',
'method': 'GET',
'headers': {
'Authorization': 'Bearer your-token'
}
})
data = response.json()
print(data)
curl -X POST https://yl.fopath.com/proxy.php \\
-H "Content-Type: application/json" \\
-d '{
"url": "https://api.example.com/data",
"method": "GET"
}'