i'm trying to script something on google script to use Telegram API to overcome Bot api limitation (es file size, impossibility to join channels as users do, etc).
I checked TDLib but I think it cannot be ported to google script. CryptoJS is usable on google script, so I tried to use the last option described here: https://core.telegram.org/api
From here I see that the API is based on TCP layer, not HTTP, so urlFetchApp cannot be used, right?
Do you know if there is a way to send / recive TCP packets using google script or a way to use TDLib on google script?