mirror of
https://github.com/aiogram/aiogram.git
synced 2025-12-09 01:15:31 +00:00
Slightly improved payments example
This commit is contained in:
parent
9159f5d2a1
commit
55ed11dbd2
1 changed files with 4 additions and 2 deletions
|
|
@ -2,8 +2,10 @@ import asyncio
|
|||
|
||||
from aiogram import Bot
|
||||
from aiogram import types
|
||||
from aiogram.dispatcher import Dispatcher
|
||||
from aiogram.utils import executor
|
||||
from aiogram.dispatcher import Dispatcher
|
||||
from aiogram.types.message import ContentType
|
||||
|
||||
|
||||
BOT_TOKEN = 'BOT TOKEN HERE'
|
||||
PAYMENTS_PROVIDER_TOKEN = '123456789:TEST:1234567890abcdef1234567890abcdef'
|
||||
|
|
@ -84,7 +86,7 @@ async def checkout(pre_checkout_query: types.PreCheckoutQuery):
|
|||
" try to pay again in a few minutes, we need a small rest.")
|
||||
|
||||
|
||||
@dp.message_handler(content_types=['successful_payment'])
|
||||
@dp.message_handler(content_types=ContentType.SUCCESSFUL_PAYMENT)
|
||||
async def got_payment(message: types.Message):
|
||||
await bot.send_message(message.chat.id,
|
||||
'Hoooooray! Thanks for payment! We will proceed your order for `{} {}`'
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue