0

我有以下代码,以便使用 curl 从 php 调用 Web 服务:

<?php
echo "Init<br />";
$url = 'http://server-ip/applications/time2gate.aspx?x=1182&y=365&map=1002&gate=B3&mode=time2gate&session=5fdf288d-01b0-414a-ba2a-58d3f624e453';

$ch = curl_init($url);
echo "1";
curl_setopt($ch, CURLOPT_HEADER, false);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$resp = curl_exec($ch);

$status_code = array();
preg_match('/\d\d\d/', $resp, $status_code);

switch($status_code[0]) {
        case 200:
            echo "Success<br />";
            break;
    case 503:
            die('Your call to Web Service failed and returned an HTTP 503.');
            break;
    case 403:
            die('Your call to Web Service failed and returned an HTTP status of 403.');
            break;
    case 400:
            die('Your call to Web Services failed and returned an HTTP status of 400.');
            break;
    default:
            die('Your call to Web Services returned an unexpected HTTP status of:' .    $status_code[0]);
}

if(curl_errno($ch))
{
    echo 'error' . curl_error($ch);
}

curl_close($ch);

?>

问题是我收到 163、815、329 之类的 HTTP 响应代码……为什么会这样?这些代码是什么意思?我检查了 Apache 的错误日志,并没有看到我的代码有任何错误。此外,我测试了对提供的 url 的调用,它适用于 Mozilla 的 Poster Add-on。

有任何想法吗?我在 Ubuntu 12 上使用 php 5。

谢谢你,尼克

4

1 回答 1

1

当我需要调用 API 时,我会使用 GitHub 上的一个简单库:https ://github.com/rmccue/Requests

我在下面放了一个使用这个库的例子,它会打印出来自 API 的完整响应。

<?php

require_once('library/Requests.php');

$url = 'http://server-ip/applications/time2gate.aspx?x=1182&y=365&map=1002&gate=B3&mode=time2gate&session=5fdf288d-01b0-414a-ba2a-58d3f624e453';

// Next, make sure Requests can load internal classes
Requests::register_autoloader();

// Now let's make a request!
$request = Requests::get($url, array('Accept' => 'application/json'));

echo '<pre>';
    print_r($request);
echo '</pre>';
于 2013-06-17T14:59:54.117 回答