DmitrMakeev commited on
Commit
2b0b494
1 Parent(s): 63e0f3c

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +5 -1
app.py CHANGED
@@ -1645,13 +1645,17 @@ def verify_phone_number(phone_number):
1645
  # Отправляем POST-запрос
1646
  response = requests.post(full_url_ver, headers=headers, data=payload)
1647
 
 
 
 
 
1648
  # Возвращаем текст ответа от сервера
1649
  return response.text
1650
  else:
 
1651
  return "Verification not started"
1652
 
1653
 
1654
-
1655
  # Функция для добавления или обновления контакта в базе данных
1656
  def add_or_update_contact(contact_data):
1657
  conn = sqlite3.connect(DATABASE_NAME)
 
1645
  # Отправляем POST-запрос
1646
  response = requests.post(full_url_ver, headers=headers, data=payload)
1647
 
1648
+ # Печатаем текст ответа от сервера
1649
+ print(f"Response Status Code: {response.status_code}")
1650
+ print(f"Response Body: {response.text}")
1651
+
1652
  # Возвращаем текст ответа от сервера
1653
  return response.text
1654
  else:
1655
+ print("Verification not started")
1656
  return "Verification not started"
1657
 
1658
 
 
1659
  # Функция для добавления или обновления контакта в базе данных
1660
  def add_or_update_contact(contact_data):
1661
  conn = sqlite3.connect(DATABASE_NAME)