我正在尝试在https://github.com/ornicar/php-github-api的帮助下从 github 上的 repo 获取所有下载
这个项目中没有下载对象,所以我创建了自己的:
类 Github_Api_Download 扩展 Github_Api{
public function getDownloads($repo, $username){
$string = 'repos/'.urlencode($username).'/'.urlencode($repo).'/downloads';
$response = $this->get($string);
die(print_r($response));
return $response;
}
}
当我运行这个时,我只得到
服务器错误 HTTP 401:未经授权
- 也应该可以在没有身份验证的情况下获得这个,因为如果我在浏览器中使用 url,它就可以工作
- 我的身份验证工作正常,因为所有操作(例如创建新仓库等)都工作正常
任何人都可以帮助我吗?:)