I don't have any other Telegram webhooks. Why am I still getting the error?

This is the only Telegram trigger (webhook) I am trying to add.
Why am I still getting this error message Telegram only supports a single webhook at a time, for a given Bot? I don’t have any other Telegram webhooks.

The only triggers I have are:

image

Hi @slishnevsky,

It seems like you’re encountering an issue with Telegram’s limitation of supporting only a single webhook per bot. This error typically occurs when a webhook is already set for your Telegram bot, and you’re trying to set another one.

Here are a few steps you can take to resolve this issue:

  1. Check Existing Webhooks: Ensure that there are no existing webhooks set for your Telegram bot. You can do this by making a GET request to the Telegram API endpoint:

    curl -s "https://api.telegram.org/bot<YOUR_BOT_TOKEN>/getWebhookInfo"
    

    Replace <YOUR_BOT_TOKEN> with your actual bot token. This will return information about the current webhook, if any.

  2. Delete Existing Webhook: If there is an existing webhook, you can delete it by making a GET request to the Telegram API endpoint:

    curl -s "https://api.telegram.org/bot<YOUR_BOT_TOKEN>/deleteWebhook"
    

    This will remove the existing webhook, allowing you to set a new one.

  3. Set New Webhook: After deleting the existing webhook, you can set a new webhook for your Pipedream workflow. Ensure that the URL you provide is the unique URL generated by Pipedream for your workflow.

If you continue to experience issues, please visit Support - Pipedream for more support options.

Would you like more detailed instructions on any of these steps?

I’m a bot powered by Pipedream and GPT-4. I’m still learning, so please double-check my answers and code! Learn how to build your own.