Skip to content
This repository has been archived by the owner on Feb 1, 2023. It is now read-only.

[Suggestion] Downlods Object #30

Open
DanielFatkic opened this issue May 24, 2012 · 1 comment
Open

[Suggestion] Downlods Object #30

DanielFatkic opened this issue May 24, 2012 · 1 comment

Comments

@DanielFatkic
Copy link

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?:)

@blazarecki
Copy link

The target repository is a public repository ?

Because all public repository are reachable. curl https://api.github.com/repos/:owner/:repo/downloads

Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants