我正在尝试做一个Twitter Bot,该通知会通知特定用户何时收藏了某条推文,然后显示了刚刚收藏的那条推文。
是否有某种方式可以使用tweepy将喜爱的tweet嵌入状态更新中?我正在使用tweet的“ URL”或“扩展URL”,但是我的机器人的状态更新只是粘贴了URL,而不是嵌入tweet。
这是我到目前为止写的:
from tweepy import OAuthHandler, API, Cursor
from pprint import pprint
favorites = [favorites for favorites in Cursor(api.favorites, screen_name="user_name").items(10)]
latest_favorite = (favorites[0]._json)
url = str((favorites[0]._json)["entities"]["urls"][0]["url"])
text = str("The user xxx has just favorited this tweet: ")
api.update_status(text + url)
我尝试仅不使用文本而是仅使用URL更新状态,但是结果是相同的。只是一个链接,没有实际嵌入。
谢谢!