1{
2 "title": "CheerioCrawler Template",
3 "type": "object",
4 "schemaVersion": 1,
5 "properties": {
6 "channels": {
7 "title": "Telegram channel(s)",
8 "type": "array",
9 "description": "Provide one or several Telegram channel names you want to scrape the posts from.",
10 "editor": "stringList",
11 "prefill": ["mediumcom"]
12 },
13 "postsFrom": {
14 "title": "Order number of the first post to scrape",
15 "type": "integer",
16 "description": "Channel posts numbered by auto increment from 1",
17 "editor": "number",
18 "prefill": 10,
19 "minimum": 1
20 },
21 "postsTo": {
22 "title": "Order number of the first post to scrape",
23 "type": "integer",
24 "description": "Channel posts numbered by auto increment from 1",
25 "editor": "number",
26 "prefill": 20,
27 "minimum": 1
28 },
29 "proxy": {
30 "title": "Proxy configuration",
31 "type": "object",
32 "description": "<strong>A proxy server is required to run this actor!</strong> Either use an Apify residential proxy, or provide your own proxy servers. Datacenter proxies will not work.",
33 "prefill": {
34 "useApifyProxy": true,
35 "apifyProxyGroups": ["RESIDENTIAL"]
36 },
37 "editor": "proxy",
38 "sectionCaption": "Proxy configuration",
39 "sectionDescription": "<strong>RESIDENTIAL proxy is required to run this actor!</strong> Other proxies will not work."
40 }
41 },
42 "required": ["channels"]
43}