php curl 接收来自 OVH 的 302 响应代码

问题描述 投票:0回答:1

在过去几天/几周内,从 php curl 到 OVH 中的服务的 Web 服务调用已开始收到“302”HTTP 代码响应

我以为呼叫服务器已列入黑名单。

但是在命令行上从同一服务器调用的同一服务(curl -V ...)收到了良好的(400代码)响应

php curl php-curl ovh
1个回答
0
投票

经过大量调试、追踪,来自useragent

从命令行调用的 Curl 发送默认的用户代理字符串(如curl/7.41)

phpcurl 默认不发送用户代理,现在 OVH 拒绝此调用

我只是添加了:

$ch = curl_init(wswwwurl); 
/* !!! useragent is now MANDATORY when calling OVH !!! */ 
$config['useragent'] = 'Mozilla/5.0 (Windows NT 6.2; WOW64; rv:17.0) Gecko/20100101 Firefox/17.0';
curl_setopt($ch, CURLOPT_USERAGENT, $config['useragent']);

现在又好了!

rem:我尝试添加 CURLOPT_FOLLOWLOCATION,但随后 OVH 服务器重定向到另一个页面“阻止请求”

© www.soinside.com 2019 - 2024. All rights reserved.