1
        $this->curl = curl_init();
        curl_setopt($this->curl, CURLOPT_URL, 'http://something.com/send');
        curl_setopt($this->curl, CURLOPT_REFERER, 'http://something.com');
        curl_setopt($this->curl, CURLOPT_USERAGENT, 'Mozilla/5.0 (Windows NT 6.1; WOW64; rv:15.0) Gecko/20100101 Firefox/15.0.1');
        curl_setopt($this->curl, CURLOPT_ENCODING, 'gzip, deflate');
        curl_setopt($this->curl, CURLOPT_COOKIEFILE, dirname(__FILE__) . '/cookies.txt');
        curl_setopt($this->curl, CURLOPT_COOKIEJAR, dirname(__FILE__) . '/cookies.txt');
        curl_setopt($this->curl, CURLOPT_HTTPGET, 0);
        curl_setopt($this->curl, CURLOPT_POST, 1);
        curl_setopt($this->curl, CURLOPT_POSTFIELDS, 'name=john');
        curl_setopt($this->curl, CURLOPT_RETURNTRANSFER, 1);
        @curl_setopt($this->curl, CURLOPT_FOLLOWLOCATION, 1);
        curl_setopt($this->curl, CURLOPT_HTTPPROXYTUNNEL, FALSE);
        curl_setopt($this->curl, CURLOPT_PROXY, $this->proxy['0']);
        curl_setopt($this->curl, CURLOPT_PROXYPORT, $this->proxy['1']);
        curl_setopt($this->curl, CURLOPT_PROXYTYPE, CURLPROXY_HTTP);
        curl_setopt($this->curl, CURLOPT_PROXYAUTH, CURLAUTH_BASIC);
        curl_setopt($this->curl, CURLOPT_PROXYUSERPWD, $this->proxy['2'] . ':' . $this->proxy['3']);
        curl_setopt($this->curl, CURLOPT_HEADER, 1);
        curl_setopt($this->curl, CURLINFO_HEADER_OUT, 1);
        curl_setopt($this->curl, CURLOPT_VERBOSE, 1);$this->website = curl_exec($this->curl);
        var_dump(curl_getinfo($this->curl));
        var_dump(curl_error($this->curl));
        echo $this->website;

所以 getinfo 告诉我: GET http://something.com/send HTTP/1.1

而不是 POST http://something.com/send HTTP/1.1

这不是代理错误-我在没有代理的情况下尝试过-结果相同。

那么为什么 cURL 强制 GET 呢?而不是做正常的 POST 请求?

4

1 回答 1

2

发生这种情况的原因是因为你已经CURLOPT_FOLLOWLOCATION设置了。

cURL 实际上并没有执行 GET 请求而不是POST,它也在执行。这是因为您发布到的 URL 使用POST/Redirect/GET模式,许多 HTTP 驱动的应用程序都使用这种模式。它基本上是一种帮助确保用户不会意外执行两次操作的机制(简而言之,它比实际情况要复杂一些)。

当您将数据 POST 到服务器时,服务器会处理请求并发出重定向,以便它可以返回相关内容,而不是简单地在对 POST 请求的响应中返回它。

总而言之,你实际上没有问题。保持你的代码不变,远程服务器上的结果将是你所期望的——只要请求数据是正确的。

于 2012-09-21T16:26:21.030 回答