1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
{
"base_url" : "http://github.com/api/v2/",
"version" : "0.3",
"methods" : {
"get_network_meta" : {
"path" : "/:user/:repo/network_meta",
"method" : "GET",
"required_params" : [
"user",
"repo"
]
},
"get_network_data" : {
"path" : "/:user/:repo/network_data_chunk",
"method" : "GET",
"required_params" : [
"user",
"repo",
"nethash"
],
"optional_params" : [
"start",
"end"
]
}
},
"expected_status" : [ 200 ],
"name" : "GitHub",
"authority" : "http://github.com/SPORE",
"meta" : {
"documentation" : "http://develop.github.com/",
"module" : "network"
}
}
|