Skip to content

Instantly share code, notes, and snippets.

@francois2metz
Created November 25, 2010 13:18
Show Gist options
  • Save francois2metz/715379 to your computer and use it in GitHub Desktop.
Save francois2metz/715379 to your computer and use it in GitHub Desktop.
Small part of github API described with SPORE
{
"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