summaryrefslogtreecommitdiff
path: root/services/twitter.json
blob: a9acff24d7f247d42ae95c0c05b93bc31db4778b (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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
{
   "api_base_url" : "http://api.twitter.com/1",
   "version" : "0.1",
   "methods" : {
      "retweets_of_me" : {
         "params" : [
            "since_id",
            "max_id",
            "count",
            "page",
            "trim_user",
            "include_entities"
         ],
         "path" : "/statuses/retweets_of_me.:format",
         "method" : "GET",
         "authentication" : "1"
      },
      "friends_timeline" : {
         "params" : [
            "since_id",
            "max_id",
            "count",
            "page",
            "trim_user",
            "include_rts",
            "include_entities"
         ],
         "path" : "/statuses/friends_timeline.:format",
         "method" : "GET",
         "authentication" : "1"
      },
      "user_timeline" : {
         "params" : [
            "user_id",
            "screen_name",
            "since_id",
            "max_id",
            "count",
            "page",
            "trim_user",
            "include_rts",
            "include_entities"
         ],
         "path" : "/statuses/user_timeline.:format",
         "method" : "GET"
      },
      "public_timeline" : {
         "params" : [
            "trim_user",
            "include_entities"
         ],
         "required" : [
            "format"
         ],
         "path" : "/statuses/public_timeline.:format",
         "method" : "GET"
      },
      "mentions" : {
         "params" : [
            "since_id",
            "max_id",
            "count",
            "page",
            "trim_user",
            "include_rts",
            "include_entities"
         ],
         "path" : "/statuses/mentions.:format",
         "method" : "GET",
         "authentication" : "1"
      },
      "home_timeline" : {
         "params" : [
            "since_id",
            "max_id",
            "count",
            "page",
            "trim_user",
            "include_entities"
         ],
         "required" : [
            "format"
         ],
         "path" : "/statuses/home_timeline.:format",
         "method" : "GET",
         "authentication" : "1"
      },
      "retweeted_by_me" : {
         "params" : [
            "since_id",
            "max_id",
            "count",
            "page",
            "trim_user",
            "include_entities"
         ],
         "path" : "/statuses/retweeted_by_me.:format",
         "method" : "GET",
         "authentication" : "1"
      },
      "retweeted_to_me" : {
         "params" : [
            "since_id",
            "max_id",
            "count",
            "page",
            "trim_user",
            "include_entities"
         ],
         "path" : "/statuses/retweeted_to_me.:format",
         "method" : "GET",
         "authentication" : "1"
      }
   },
   "api_format" : [
      "json",
      "rss",
      "xml",
      "atom"
   ],
   "name" : "Twitter",
   "author" : [
      "franck cuny <franck@lumberjaph.net>"
   ],
   "meta" : {
      "documentation" : "http://dev.twitter.com/"
   }
}