我正试图在https://github.com/ornicar/php-github-api
的帮助下从github上的回购中获取所有下载内容此项目中没有下载对象,所以我创建了自己的:
类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:未经授权
任何人都可以帮助我?:)