Пример реализации на Python:
import requests
def check_registration(user_id):
api_url = f”https://1win.site/api/check_user/{user_id}”
response = requests.get(api_url)
if response.status_code == 200 and response.json().get(‘registered’):
return True
return False
def bot_main(user_id):
if check_registration(user_id):
print(“Welcome to the bot!”)
# Основная функциональность бота здесь
else:
print(“Please register on the website 1win first.”)
user_id = input(“Enter your 1win user ID: “)
bot_main(user_id)
TraffBaza изменил статус на опубликованный 06/08/2024