我可以使用curl获取github发布细节,但我想使用php。
我在curl中使用的命令如下:
curl -u user.ca:password -X GET https://api.github.com/repos/xyz/abc/releases
答案 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);