是否可以通过 API 向 Telegram 的 "Saved Messages" 发送消息?
Is it possible to send messages to Telegram's "Saved Messages" through the API?
是否可以通过 Telegram API 向 Saved Messages 聊天室发送消息?
我在网上到处找,但找不到任何信息。我认为这是可能的。
如果您指的是主要的 mtproto api,是的,您可以通过您的 ID 或用户名向自己发送消息,电报会将其放入已保存的消息中。
你没有提到你使用的是哪个 API,但你在 Telethon 中是这样做的:
client.send_message("me", "hello")
但是如果你指的是机器人 api,机器人不可能向你保存的消息发送消息。
是否可以通过 Telegram API 向 Saved Messages 聊天室发送消息?
我在网上到处找,但找不到任何信息。我认为这是可能的。
如果您指的是主要的 mtproto api,是的,您可以通过您的 ID 或用户名向自己发送消息,电报会将其放入已保存的消息中。
你没有提到你使用的是哪个 API,但你在 Telethon 中是这样做的:
client.send_message("me", "hello")
但是如果你指的是机器人 api,机器人不可能向你保存的消息发送消息。