There is no download Object in this project, so i've created my own:
class Github_Api_Download extends Github_Api{
public function getDownloads($repo, $username){
$string = 'repos/'.urlencode($username).'/'.urlencode($repo).'/downloads';
$response = $this->get($string);
die(print_r($response));
return $response;
}
}
When i run this, i'm getting only
Server Error HTTP 401: Unauthorized
it should be possible to get this without authentication, because if i use the url in the browser, it's working!
Also i've tested my authentication, and it's working, because all the actions which require the authentication(e.g. create new repo,etc..) are working fine
Anybody can help me?:)