代码就是官方教程,我要实现的也很简单,就是另一个程序( tasker 或 ifttt )会把短信通过 webhook 传给 bot 的 api,然后 bot 会在和我的对话中发送这个短信。
在第三个程序中,会从 LastMessage.mes 中获取信息,下面的代码会写成 flask 服务,让第三个程序从接口获取内容,这里面存储的应该是机器人说的最后一句话,现在的问题是,通过 api 只能拿到我说的话( update.message.text ),而无法拿到机器人自己说的话,不知道官方是否有这样的方法?
import logging
from telegram.ext import Updater, MessageHandler, Filters, CommandHandler
logging.basicConfig(format='%(asctime)s - %(name)s - %(levelname)s - %(message)s', level=logging.INFO)
TOKEN = "TOKEN"
class LastMessage:
mes = None
def start(bot, update):
bot.send_message(chat_id=update.message.chat_id, text="I'm a bot, please talk to me!")
def echo(bot, update):
LastMessage.mes = update.message.text
bot.send_message(chat_id=update.message.chat_id, text=update.message.text)
print("Message is:{}".format(LastMessage.mes))
updater = Updater(token=TOKEN)
dispatcher = updater.dispatcher
start_handler = CommandHandler('start', start)
echo_handler = MessageHandler(Filters.text, echo)
dispatcher.add_handler(echo_handler)
dispatcher.add_handler(start_handler)
updater.start_polling()
在写 telegram 这个程序之前,我已经实现了微信+server 酱的相同功能,这套程序的问题是 server 酱推送来的信息是公众号的通知,使用 SYSTEM CONTEXT 和 ismpChat 可以获取到这个通知的到来,但是获取的 text 的内容是一个空列表,所以这个方法不行。
1
wql 2018-11-16 12:58:11 +08:00 via Android
telegram 里面机器人看不见机器人说的话……
|
3
orqzsf1 2018-11-16 14:19:38 +08:00
https://core.telegram.org/bots/api
Type of the entity. Can be mention (@username), hashtag, cashtag, bot_command, url, email, phone_number, bold (bold text), italic (italic text), code (monowidth string), pre (monowidth block), text_link (for clickable text URLs), text_mention (for users without usernames) |