如何使用php-curl(带凭据)从github获取发布信息?

时间:2016-04-08 17:08:30

标签: php curl github github-api

我可以使用curl获取github发布细节,但我想使用php。

我在curl中使用的命令如下:

curl -u user.ca:password -X GET https://api.github.com/repos/xyz/abc/releases

1 个答案:

答案 0 :(得分:0)

-u选项的php等价物是CURLOPT_USERPWD

curl_setopt($ch, CURLOPT_USERPWD, 'user.ca:password');

最后你会有这样的事情:

$ch = curl_init(); 
curl_setopt($ch, CURLOPT_URL, "https://api.github.com/repos/xyz/abc/releases"); 
curl_setopt($ch, CURLOPT_USERPWD, 'user.ca:password');
curl_setopt($ch, CURLOPT_USERAGENT,'Awesome-Octocat-App');
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); 
$fetch = curl_exec($ch); 
curl_close($ch);