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
|
{
"api_base_url" : "http://api.twitter.com/1",
"version" : "0.1",
"methods" : {
"public_timeline" : {
"params" : [
"skip_user"
],
"path" : "/statuses/public_timeline",
"method" : "GET"
},
"home_timeline" : {
"params" : [
"since_id",
"max_id",
"count",
"page",
"skip_user"
],
"path" : "/statuses/home_timeline",
"method" : "GET"
}
},
"api_format" : [
"json"
],
"name" : "Twitter",
"author" : [
"franck cuny <franck@lumberjaph.net>"
],
"meta" : {
"documentation" : "http://dev.twitter.com/"
}
}
|