Notice
Recent Posts
Recent Comments
«   2024/07   »
1 2 3 4 5 6
7 8 9 10 11 12 13
14 15 16 17 18 19 20
21 22 23 24 25 26 27
28 29 30 31
Tags
more
Archives
Today
Total
관리 메뉴

아직도 텔레그램 안쓰니?

텔레그램 봇으로 주사위 이모지 보내고 값을 가져오기 본문

텔레그램 팁

텔레그램 봇으로 주사위 이모지 보내고 값을 가져오기

텔레그램사랑 2024. 1. 8. 22:20

https://core.telegram.org/bots/api#senddice


sendDice 메서드를 사용한다

 

dice에 value가 주사위의 값이다

https://api.telegram.org/bot<BotToken>/sendDice?chat_id=<ChatID>

 

 

 

 

https://docs.python-telegram-bot.org/en/stable/telegram.chat.html#telegram.Chat.send_dice

https://docs.python-telegram-bot.org/en/stable/telegram.bot.html#telegram.Bot.send_dice

 

async def dice_command(update: Update, context: ContextTypes.DEFAULT_TYPE) -> None:
    message = await context.bot.send_dice(chat_id=update.effective_chat.id)
    print(message.dice.value)