使用电报机器人以 hh mm sec 格式更新用户的时间
Updated time from user in hh mm sec format using telegram bot
我试图从电报机器人 API 获取用户重播的响应时间,但它不起作用。 update.message 响应时间建议获取时间的更好方法。
只有 date
attribute in the message
object in Telegram's Bot API. You can use update.effective_message.date
可以检索它,python-telegram-bot
库在内部将其转换为 datetime
对象。
我试图从电报机器人 API 获取用户重播的响应时间,但它不起作用。 update.message 响应时间建议获取时间的更好方法。
只有 date
attribute in the message
object in Telegram's Bot API. You can use update.effective_message.date
可以检索它,python-telegram-bot
库在内部将其转换为 datetime
对象。