-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathtweets.json
61 lines (61 loc) · 1.54 KB
/
tweets.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
{
"version": 1,
"request": {
"url": "https://api.twitter.com/1.1/search/tweets.json",
"method": "GET",
"authorization": {
"type": "OAuth2",
"grantType": "ClientCredentials",
"tokenServerUrl": "https://api.twitter.com/oauth2/token"
},
"params": {
"q": true,
"count": false,
"max_id": false
},
"search": {
"key": "q"
},
"pagination": {
"type": "seek",
"seekId": "id",
"seekKey": "max_id",
"limitKey": "count",
"maxCount": 100
}
},
"examples": {
"q": "'celebrity'"
},
"response": {
"ctype": "application/json",
"tablePath": "$.statuses[*]",
"schema": {
"created_at": {
"target": "$.created_at",
"type": "string"
},
"text": {
"target": "$.text",
"type": "string"
},
"truncated": {
"target": "$.truncated",
"type": "boolean"
},
"iso_language_code": {
"target": "$.metadata.iso_language_code",
"type": "string"
},
"hashtags": {
"target": "$.entities.hashtags",
"type": "string"
},
"id": {
"target": "$.id",
"type": "int"
}
},
"orient": "records"
}
}