Spaces:
Runtime error
Runtime error
File size: 433 Bytes
be2cac6 9884211 aebb7b2 9884211 aebb7b2 9884211 be2cac6 9884211 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 |
import requests
import urllib3
api_url = "https://ai-app-ly.infinityfreeapp.com/tele.php"
# Disable SSL certificate verification
urllib3.disable_warnings(urllib3.exceptions.InsecureRequestWarning)
data = {
"register": True,
"username": "rth",
"password": "gkfgfgh"
}
response = requests.post(api_url, data=data, verify=False)
json_data = response.json()
message = json_data['message']
print(message) |