-
Notifications
You must be signed in to change notification settings - Fork 397
/
app.json
40 lines (40 loc) · 1.24 KB
/
app.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
{
"name": "JayBee TikTok Downloader Bot",
"description": "A Telegram bot to download TikTok videos without any watermark",
"logo" : "https://telegra.ph/file/05bae0725724007c72fa1.jpg",
"success_url" : "https://t.me/JayBeeBots",
"keywords": [
"telegram",
"bot",
"tiktok",
"jaybee"
],
"repository": "https://github.com/TerminalWarlord/TikTok-Downloader-Bot",
"website": "https://github.com/TerminalWarlord/TikTok-Downloader-Bot",
"env": {
"BOT_TOKEN": {
"description": "Your bot Bot Token, get this value from @BotFather.",
"value": ""
},
"API_KEY": {
"description": "Your APP API KEY, get this from https://my.telegram.org",
"value": ""
},
"API_HASH": {
"description": "Your APP HASH, get this from https://my.telegram.org",
"value": ""
},
"CHANNEL_URL": {
"description": "URL of your Telegram channel link.",
"value": ""
},
"BOT_URL": {
"description": "Username of your Telegram Bot (without @). Example: JayBeeTikTokBot",
"value": ""
},
"WORKERS": {
"description": "Number of threads to use, this depends on usage. 4 is the recommended (and default) amount, but your experience may vary.",
"value": "4"
}
}
}