-
Notifications
You must be signed in to change notification settings - Fork 26
/
Copy pathINPUT_SCHEMA.json
34 lines (34 loc) · 1.13 KB
/
INPUT_SCHEMA.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
{
"title": "Twitter scraper",
"type": "object",
"schemaVersion": 1,
"properties": {
"initialCookies": {
"title": "Login Cookies",
"type": "array",
"description": "Your login cookies will be used to bypass the login wall. See <a href='https://apify.com/vdrmota/twitter-scraper'>ReadMe</a> for instructions.",
"editor": "json"
},
"handle": {
"title": "List of handles to scrape",
"type": "array",
"description": "The twitter handles of the profiles you want to scrape.",
"prefill": ["elonmusk", "patrickc"],
"editor": "stringList"
},
"tweetsDesired": {
"title": "Max. Tweets",
"type": "integer",
"description": "Max. Number of Tweets to Retrieve.",
"prefill": 100
},
"proxyConfig": {
"title": "Proxy configuration",
"type": "object",
"description": "Optionally use a proxy.",
"default": {},
"editor": "proxy"
}
},
"required": ["initialCookies", "handle"]
}