-
Notifications
You must be signed in to change notification settings - Fork 31
/
Copy pathtwitter.json
117 lines (117 loc) · 3.33 KB
/
twitter.json
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
{
"name": "twitter",
"api_root": "https://api.twitter.com/1.1",
"resources": [
{
"name": "account/settings",
"path": "account/settings.json",
"methods": [ "get" ],
"params": {
"oauth": "required"
}
},
{
"name": "followers/ids",
"path": "followers/ids.json",
"methods": [ "get" ],
"params": {
"screen_name": "optional",
"oauth": "required"
}
},
{
"name": "statuses/update",
"path": "statuses/update.json",
"methods": [ "post" ],
"params": {
"status": "required",
"in_reply_to_status_id": "optional",
"lat": "optional",
"long": "optional",
"place_id": "optional",
"display_coordinates": "optional",
"trim_user": "optional"
}
},
{
"name": "search/tweets",
"path": "search/tweets.json",
"methods": [ "get" ],
"params": {
"q": "required",
"callback": "optional",
"geocode": "optional",
"lang": "optional",
"locale": "optional",
"page": "optional",
"result_type": "optional"
}
},
{
"name": "statuses/home_timeline",
"path": "statuses/home_timeline.json",
"methods": [ "get" ],
"params": {}
},
{
"name": "statuses/mentions_timeline",
"path": "statuses/mentions_timeline.json",
"methods": [ "get" ],
"params": {}
},
{
"name": "statuses/update",
"path": "statuses/update.json",
"methods": [ "post" ],
"params": {}
},
{
"name": "statuses/user_timeline",
"path": "statuses/user_timeline.json",
"methods": [ "get" ],
"params": {}
},
{
"name": "statuses/retweets_of_me",
"path": "statuses/retweets_of_me.json",
"methods": [ "get" ],
"params": {}
},
{
"name": "statuses/destroy/:id",
"path": "statuses/destroy/:id.json",
"methods": [ "post" ],
"params": {
"id": "required"
}
},
{
"name": "statuses/retweet/:id",
"path": "statuses/retweet/:id.json",
"methods": [ "post" ],
"params": {}
},
{
"name": "statuses/retweets/:id",
"path": "statuses/retweets/:id.json",
"methods": [ "get" ],
"params": {}
},
{
"name": "statuses/show/:id",
"path": "statuses/show/:id.json",
"methods": [ "get" ],
"params": {
"id": "required"
}
},
{
"name": "geo/id/:place_id",
"path": "geo/id/:place_id.json",
"methods": [ "get" ],
"params": {
"place_id": "required"
}
}
]
}