Created
November 25, 2010 13:18
-
-
Save francois2metz/715379 to your computer and use it in GitHub Desktop.
Small part of github API described with SPORE
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"base_url" : "http://github.com/api/v2/", | |
"version" : "0.4", | |
"methods" : { | |
"user_search" : { | |
"path" : "/:format/user/search/:search", | |
"method" : "GET", | |
"required_params" : [ | |
"format", | |
"search" | |
] | |
}, | |
"get_info" : { | |
"path" : "/:format/user/show/:username", | |
"method" : "GET", | |
"required_params" : [ | |
"format", | |
"username" | |
] | |
}, | |
"get_profile" : { | |
"path" : "/:format/user/show", | |
"method" : "GET", | |
"required_params" : [ | |
"format" | |
], | |
"authentication" : true | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment