skip to Main Content

update
message_id

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

On the website with updates for the Telegram Bot API, there’s a new feature "message effect". A unique effect ID is required, but it’s not mentioned anywhere where to get it. Does anyone have any ideas?

2

Answers


  1. {
        '🔥': "5104841245755180586",
        '👍': "5107584321108051014",
        '👎': "5104858069142078462",
        '❤️': "5044134455711629726",
        '🎉': "5046509860389126442",
        '💩': "5046589136895476101"
    }
    
    Login or Signup to reply.
  2. Still no docs on it, and moreover it at the moment of 20.06.2024 I faced an INVALID_EFFECT_ID error from Telegram Server when my bot sending some kind of "success" messages. But! With "fail" effects everything works fine without any exceptions.

    I’m using python aiogram latest release. Here are the ids, which I use for "success" and "fail" messages:

    SUCCESS_EFFECT_IDS: Final[list[str]] = [
        "5104841245755180586",  # 🔥
        "5107584321108051014",  # 👍
        "5044134455711629726",  # ❤️
        "5046509860389126442",  # 🎉
    ]
    
    FAIL_EFFECT_IDS: Final[list[str]] = [
        "5104858069142078462",  # 👎
        "5046589136895476101",  # 💩
    ]
    

    I contacted Telegram Support, but I don’t think they can help with API-related problems.

    Will reply here on their feedback.

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search