diff options
| author | Francois Perrad <francois.perrad@gadz.org> | 2010-10-22 20:25:42 +0200 |
|---|---|---|
| committer | Francois Perrad <francois.perrad@gadz.org> | 2010-10-22 20:25:42 +0200 |
| commit | c77fe8638bc1f4fb94cdbbc1f084199b9afdaf92 (patch) | |
| tree | 7be29740fe0b9c036a820cfe54a7aa794aa4bbc3 /services/github/repository.json | |
| parent | use Pod::Usage (diff) | |
| download | api-description-c77fe8638bc1f4fb94cdbbc1f084199b9afdaf92.tar.gz | |
modularized version of github API
Diffstat (limited to '')
| -rw-r--r-- | services/github/repository.json | 85 |
1 files changed, 85 insertions, 0 deletions
diff --git a/services/github/repository.json b/services/github/repository.json new file mode 100644 index 0000000..78d17b4 --- /dev/null +++ b/services/github/repository.json @@ -0,0 +1,85 @@ +{ + "base_url" : "http://github.com/api/v2/", + "version" : "0.2", + "methods" : { + "unwatch_repo" : { + "required_params" : [ + "format", + "user", + "repo" + ], + "path" : "/:format/repos/unwatch/:user/:repo", + "method" : "GET", + "authentication" : true + }, + "repos_info" : { + "required_params" : [ + "format", + "user", + "repo" + ], + "path" : "/:format/repos/:user/:repo", + "method" : "GET" + }, + "fork_repos" : { + "required_params" : [ + "format", + "user", + "repo" + ], + "path" : "/:format/repos/fork/:user/:repo", + "method" : "GET", + "authentication" : true + }, + "list_all_repos" : { + "required_params" : [ + "format", + "user", + "repo" + ], + "path" : "/:format/repos/show/:user", + "method" : "GET" + }, + "repos_search" : { + "required_params" : [ + "format", + "q" + ], + "path" : "/:format/repos/search/:q", + "method" : "GET" + }, + "watch_repo" : { + "required_params" : [ + "format", + "user", + "repo" + ], + "path" : "/:format/repos/watch/:user/:repo", + "method" : "GET", + "authentication" : true + }, + "create_repo" : { + "required_params" : [ + "format" + ], + "path" : "/:format/repos/create", + "method" : "POST", + "authentication" : true + }, + "set_repo_info" : { + "required_params" : [ + "format", + "user", + "repo" + ], + "path" : "/:format/repos/show/:user/:repo", + "method" : "POST", + "authentication" : true + } + }, + "name" : "GitHub", + "authority" : "http://github.com/SPORE", + "meta" : { + "documentation" : "http://develop.github.com/" + } +} |
