所以几个月来我一直在外部 Linux Centos 7.6.1810 服务器上收集推文,但由于某些原因,我不能再这样做了。
所以我的代码是
consumer_key = 'xxx'
consumer_secret = 'xxx'
access_token = 'xxx'
access_secret = 'xxx'
options(httr_oauth_cache=T)
rtweet::create_token(
app = "appname",
consumer_key = consumer_key,
consumer_secret = consumer_secret,
access_token = access_token,
access_secret = access_secret)
几个月来一直运行良好,但由于某些原因,现在我得到了错误
if (file == "") stop("'file' must be non-empty string") 出错:需要 TRUE/FALSE 的地方缺少值
如果我查看函数create_token
的参数,我没有放的唯一参数是,set_renv
但即使使用该参数,它也不起作用。但是,它在我的本地 Windows 计算机上运行良好......有什么建议吗?