3

我从 JQuery $.getJSON 函数调用 web 服务,它工作正常。

    var p = {
       'field1': 'value1',
       'field2': 'value2',
       'field3': 'value3'
    };

    $.getJSON('https://service:xxx@xxx.xxx.yyyyy.com.xx/service/search?callback=?', p, function(data) {
    if (data[0]) {      
        // print results
    } else  {
        // no results found
    }
});

我正在尝试从 PHP 和 CURL 进行连接,但是它不起作用,它总是返回 false。

//第一次尝试

$params = array(  'field1' => 'value1',  'field2' => 'value2', 'field3'=> 'value3');
$ch = curl_init();
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_POST, 1);
curl_setopt($ch, CURLOPT_URL, 'https://service:xxx@xxx.xxx.yyyyy.com.xx/service/search?callback=?');
curl_setopt($ch, CURLOPT_POSTFIELDS, $params);
$result = curl_exec($ch); // return false instead of my JSON

// 第二次尝试

    $data_string = json_encode($params);                                                                                   
    $ch = curl_init('https://https://service:xxx@xxx.xxx.yyyyy.com.xx/service/search?callback=?');                                                                      
    curl_setopt($ch, CURLOPT_CUSTOMREQUEST, "POST");                                                                     
    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))                                                                       
);                                                                                                                   

    $result2 = curl_exec($ch); //return false instead of my JSON

我做错了什么?

非常感谢,

4

3 回答 3

1

Try changing your code to this:

$params = array(  'field1' => 'value1',  'field2' => 'value2', 'field3'=> 'value3');

$data_string = implode('&',$params);
//NB: you may need to urlencode the each of your params

$ch = curl_init('https://service:xxx@xxx.xxx.yyyyy.com.xx/service/search?  callback=?&' .$data_string);                                                                      
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);    
$result2 = curl_exec($ch);

Untested code, hope it helps.

于 2012-11-07T05:46:42.390 回答
0

jquery 请求使用 GET。您编写的 curl 代码似乎正在发送一个发布请求(我不是 curl 方面的专家)。显然,接收服务器以不同的方式处理不同类型的请求,因此请确保您通过 curl 发送 get ,这应该会有所帮助。

于 2012-11-07T01:31:09.710 回答
0

getJSON 发送 GET 请求,因此您需要使用 http_build_query 将 params 数组转换为字符串并将其附加到查询中。当您使用 HTTPS 请求数据时,您需要使用 CURLOPT_CAINFO / CURLOPT_CAPATH 将 CURL 指向有效证书,我将忽略代码中的验证。

$params = array(  'field1' => 'value1',  'field2' => 'value2', 'field3'=> 'value3');
$url = 'https://service:xxx@xxx.xxx.yyyyy.com.xx/service/search?callback=?' . http_build_query($params);

$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch , CURLOPT_SSL_VERIFYPEER , false);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);

$result = curl_exec($ch);
if($result === FALSE) {
    echo curl_error($ch);
}
于 2012-11-07T09:20:40.673 回答