Создаю платеж для пользователя, все нормально обрабатывается, но вот проблема, ответ binance просит:
To ensure that your server has received and accepted the notifications, please acknowledge every notification with a HTTP 200 and SUCCESS response in the body.
Response Example#
{ "returnCode":"SUCCESS", "returnMessage":null}
Copy
Orders with no payment activity over 24 hours will be closed automatically, please contact Binance Merchant Operation (https://merchant.binance.com/en/help) in order to get the notification.
Мой ответ
Python
# Создаем JSON-ответ
response_data = {
"returnCode": "SUCCESS",
"returnMessage": None
}
# Устанавливаем content_type в 'application/json'
return web.Response(text=json.dumps(response_data), content_type='application/json')
Но он все равно спамит одного и того-же пользователя за счет этого постоянно происходит постоянное начисление на баланс, как обработать правильно чтобы он сделал только 1 уведомление