是否可以使用 twitteR 包(或通常只使用 R)转发状态?
例如,如果我导入了一堆推文,并且我想转发其中一个:
library(twitteR)
# load ROAuth handshake (authorization to interact with Twitter) and check if connection to twitter is established
load(file = "twitteR_credentials")
registerTwitterOAuth(twitCred)
# search Twitter for 25 tweets containing the term '#twitter' and take the first one
tweets = searchTwitter('#twitter', n=25)
favorite_tweet = tweets[1]
# is there a function that lets me retweet favorite_tweet to my own timeline?
我知道您可以使用该updateStatus
功能发布由文本组成的状态,但是是否有类似的功能可以让您通过转发另一个状态来更新您的状态?