我的目标是通过构建Twitter关系中的igraph建立一个推特网络。
经过10次迭代后,R给了我这个错误
twInterfaceObj $ doAPICall中的错误(粘贴(“users”,“show”,sep =“/”),params = params,: 找不到(HTTP 404)。
# Grab latest tweets
tweets_galway <- searchTwitter('#galway', n=100)
# make into df
df <- do.call("rbind", lapply(tweets_galway, as.data.frame))
# extract users from galway hashtag tweets
galway_users = df$screenName
connectiondf=data.frame()
for( i in 1:100)
{
name<-getUser(galway_users[i])
following<-name$getFriends()
following <- twListToDF(following)
connect1=cbind(follower=galway_users[i],following=following$screenName)
follower<-name$getFollowers()
follower <- twListToDF(follower)
connect2=cbind(follower=follower$screenName,following=galway_users[i])
connection<-rbind(connect1,connect2)
connectiondf=rbind(connectiondf,connection)
print(i)
}
为什么我收到此错误?如果这是一个愚蠢的查询,但我不熟悉R
,请道歉