我是PHP的新手。我使用restclient(https://github.com/tcdent/php-restclient)来请求如下:
@SpyBean
它非常有效。但是:
<?php
require 'restclient.php';
$api = new RestClient();
$result = $api->get("https://api.github.com/repos/phatls/CallCenter_Customer/issues?state=all");
if($result->info->http_code == 200)
echo ($result->response);
else
echo "false";
?>
返回false。如果您没有任何不便,请帮助我。 感谢
答案 0 :(得分:0)
请阅读官方页面文档。link
或者按照这个官方的例子
$api = new RestClient([
'base_url' => "http://vimeo.com/api/v2",
'format' => "php"
]);
$result = $api->get("tcdent/info");
if($result->info->http_code == 200)
echo ($result->response);
else
echo "false";