我正在尝试使用Github v3 API并发布JSON来更新配置文件(或其他一些调用),并从Github获得以下响应;
Array
(
[message] => Body should be a JSON Hash
)
我查看了API文档的相关页面:http://developer.github.com/v3/users/
此页面:http://developer.github.com/v3/#http-verbs涵盖POST / PATCH
以下是我正在使用的代码
$data = array("bio" => "This is my bio" );
$data_string = json_encode($data);
function curl($url) {
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL,$url);
curl_setopt($ch, CURLOPT_CUSTOMREQUEST, "POST");
curl_setopt($ch, CURLOPT_POSTFIELDS, $data_string);
curl_setopt($ch, CURLOPT_RETURNTRANSFER,1);
curl_setopt($ch, CURLOPT_CONNECTTIMEOUT,1);
curl_setopt($ch, CURLOPT_USERPWD, "USERNAME:PASSWORD");
curl_setopt($ch, CURLOPT_HTTPAUTH, CURLAUTH_BASIC);
$content = curl_exec($ch);
curl_close($ch);
return $content;
}
$result = json_decode(curl('https://api.github.com/user'),true);
我还尝试CURLOPT_CUSTOMREQUEST
作为'POST'
和'PATCH'
,但两者都得到了相同的错误响应。
有人能指出我向API发布数据的正确方向吗?
答案 0 :(得分:1)
您必须global $data_string
或将$data_string
变量传递给curl()
以获得可重用性。
示例:
function curl($curl, $data)
{
$data_string = json_encode($data);
// your code here
}
答案 1 :(得分:0)
您应该像这样指定标题:
curl_setopt($ch, CURLOPT_HTTPHEADER, array('Content-Type: application/json'));