我正在尝试使用 getPost 函数访问特定 fb 页面上帖子的所有评论。我收到以下错误。那么我该如何解决这个问题呢?谢谢
library(Rfacebook)
load("fbauthentication")
date1<-Sys.Date()-7
date2<-Sys.Date()
MaybellineUS<-getPage(page="Maybelline",token=authentication,n=100,since=date1,until=date2,feed=TRUE)
df <- data.frame(from_id=character(),from_name=character(),message=character(),created_time=character(),
likes_count=numeric(),comments_count=numeric(),id=character(),stringsAsFactors = FALSE)
i <- 1
while(i<=length(MaybellineUS)){
x<- getPost(post=MaybellineUS$id[i],n=500,token =authentication )
df<-rbind(df,x[['comments']])
i<-i+1
}
Error in callAPI(url = url, token = token) :
(#100) Tried accessing nonexisting field (from) on node type (Page)