1

localhost 中的以下代码工作正常,在服务器中它会引发错误 [curl] 6: Couldn't resolve host 'identity.api.rackspacecloud.com'

$client = new Rackspace(Rackspace::UK_IDENTITY_ENDPOINT, array(
                    'username' => $username,
                    'apiKey' => $apiKey,
                    'ssl.certificate_authority' => false,
                    'curl.options' => array('debug' => true, CURLOPT_IPRESOLVE => CURL_IPRESOLVE_V4)
            ));

我在服务器 identity.api.rackspacecloud.com 中执行 ping 操作,它工作正常。我按照这个文档尝试使用 curl 进行身份验证:http: //docs.rackspace.com/servers/api/v2/cs-devguide/content/curl_authentication.html

这是我发送的请求:

curl -s https://lon.identity.api.rackspacecloud.com/v2.0/tokens -X 'POST' -d '{"auth":{"RAX-KSKEY:apiKeyCredentials":{"username":"xxxx", "apiKey":"yyyyyyyy"}}}' -H "Content-Type: application/json" | python -m json.tool 

它返回结果。

但是当我运行 php 代码时,它会抛出一个错误。请指导我找到问题所在。

编辑:

        $data_string = '{"auth":{"RAX-KSKEY:apiKeyCredentials":{"username":"xxxxxxx", "apiKey":"yyyyyyyyyy"}}}';//json_encode($data);
        $ch = curl_init('https://lon.identity.api.rackspacecloud.com/v2.0/tokens');
        curl_setopt($ch, CURLOPT_CUSTOMREQUEST, "POST");
        curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, FALSE);
        curl_setopt($ch, CURLOPT_POSTFIELDS, $data_string);
        curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
        curl_setopt($ch, CURLOPT_HTTPHEADER, array(
        'Content-Type: application/json',
        'Content-Length: ' . strlen($data_string))
        );
        echo $result = curl_exec($ch);
        if(curl_errno($ch)){
            echo 'Curl error: ' . curl_error($ch);
        }

我在本地以及服务器和本地测试上面的代码,它工作正常但不是在现场。更改CURLOPT_SSL_VERIFYPEERTRUE 和 FALSE。没有任何效果。

笔记:

操作系统:CentOS

4

1 回答 1

1

添加谷歌DNS域名服务器,解决问题。

在服务器中,/etc/resolv.conf 中定义的名称服务器是

nameserver 83.138.151.80
nameserver 83.138.151.81

这是英国Rackspace推荐的名称服务器。

所以命令提示符中的 curl 有效,但在 php 中无效。所以我决定同时添加谷歌DNS。现在 /etc/resolv.conf 像这样:

nameserver 83.138.151.80
nameserver 83.138.151.81
nameserver 8.8.8.8

一切正常...

于 2014-12-17T03:01:01.143 回答