我需要继续收集推文以直播数据并在Power BI中显示见解。
我有以下R代码来连续流推文。它会尝试每10秒删除一次推文。在前10-14次之后,它会引发错误:
The stream disconnected prematurely. Reconnecting...
下面是代码:
q <- "maths"
streamtime <- 10
filename <- "test.json"
rt <- stream_tweets(q = q, timeout = streamtime, file_name = filename)
如何克服此限制?