about summary refs log tree commit diff
path: root/services/twitter.json
blob: f07470e3b812eb6f58b4656ef0150a2b475db470 (plain) (blame)
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
{
   "declare" : {
      "api_base_url" : "http://api.twitter.com/1",
      "api_format_mode" : "append",
      "api_format" : "json"
   },
   "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"
      }
   }
}