我需要将电报聊天的最后一个文本保存到一个文本变量中。我正在使用tglib库,但是我不知道该怎么做
我已经尝试过:
const Chat = await client.fetch({
'@type': 'getChats',
'offset_order': '9223372036854775807',
'offset_chat_id': idChat, //ID number of the chat
'limit': 1,
})
var lastMessage = Chat.Text
有什么建议吗?