Telegram Http.Get first message Status 202 (Ok) but following messages return Status=0 ?

Created at 27 Mar 2025, 15:07
How’s your experience with the cTrader Platform?
Your feedback is crucial to cTrader's development. Please take a few seconds to share your opinion and help us improve your trading experience. Thanks!
CT

ctid8068054

Joined 20.10.2024

Telegram Http.Get first message Status 202 (Ok) but following messages return Status=0 ?
27 Mar 2025, 15:07


 

I am using Http.Get towards Telegram and it has been working fine for many months.  

Just recently only the first message in an instance works, then any following messages from that instance do not work (response status=0). 

There has been a cTrader update to 5.2.5 which may be the culprit, not sure.  

Are others noticing the same behaviour using Telegram ? 

Would someone please have a solution for me ? 

 

using cAlgo.API;
using cAlgo.API.Indicators;
using System;
using System.Linq;
using System.Collections.Generic; 

[Robot(AccessRights = AccessRights.None, AddIndicators = true)]

 

private void SendTelegramMessage(string Message, string TelegramToken, string TelegramChatId)
{
    // Send message to Telegram 
    var result = Http.Get($"https://api.telegram.org/bot{TelegramToken}/sendMessage?chat_id={TelegramChatId}&text="+Message); 
    switch(result.StatusCode)
    {
         case 0:
             Print("Telegram: Status " + result.StatusCode + ": The bot sleeping, wake it up.");
             break;
         case 200:
             Print("Telegram: Status " + result.StatusCode + ": Message sent -> " + Message);
             break;
         case 400:
             Print("Telegram: Status " + result.StatusCode + ": The chat id (" + TelegramChatId + ") is incorrect.");
             break;
         case 401:
             Print("Telegram: Status " + result.StatusCode + ": The bot token (" + TelegramToken + ") is incorrect.");
             break;
        case 404:
            Print("Telegram: Status " + result.StatusCode + ": The bot token (" + TelegramToken + ") or chat id (" + TelegramChatId + ") is missing or incorrect.");
            break;
        default:
             Print("Telegram: " + result.StatusCode + ": Unknown error code.");
             break;
    }
}

 

 


@ctid8068054
Replies

Hildeguard
31 Mar 2025, 13:58 ( Updated at: 03 Apr 2025, 05:46 )

confirming the issue

Hello,

i am facing the same issue, basically this is also the problem described in https://community.ctrader.com/forum/ctrader-algo/46695/

 

Anyone has a solution?


@Hildeguard