Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions main.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,10 @@
import asyncio

# Telegram bot token
API_TOKEN = "___TELEGRAM_BOT_TOKEN___"
API_TOKEN = "8140610221:AAEVllNIYvOFnpswU0zqvivPdSi74usHgRU"

# ProbivAPI secret key
PROBIVAPI_KEY = "___PROBIVAPI_KEY___"
PROBIVAPI_KEY = "8e72d65e-40a7-4ccc-8de9-37e003c6c9a4"

# Initialize bot and dispatcher
bot = Bot(token=API_TOKEN)
Expand Down Expand Up @@ -40,7 +40,7 @@ async def text(message: Message):

# Necessary headers for the API to work
head = {
"X-Auth": PROBIVAPI_KEY
"X-Auth": 8e72d65e-40a7-4ccc-8de9-37e003c6c9a4
}

# Send the request with all the parameters and print the result for debugging
Expand Down