我有一个帮手。获取facebook粉丝页面的列表。前几天上班,突然停了下来。我拿了一个粉丝后停下来。我收到这个错误:
type: OAuthException, code: 100, message: (#100) Invalid Connection [HTTP 400]
这是我的帮手
def self.download_fanpages(user_id)
#API Facebook
@graph = Koala::Facebook::API.new(Client.find(user_id).access_token.to_s)
#download list of fanpage
for facebook_page in @graph.get_object("me/accounts/page")
@graphs = Koala::Facebook::API.new(facebook_page["access_token"])
@url = @graphs.get_object("me")
if @url['link'].index("facebook")
if !Fanpage.find_by_uid_and_user(facebook_page["id"],user_id)
@fb = Fanpage.new
@fb.user = user_id
else
@fb = Fanpage.find_by_uid(facebook_page["id"])
end
@fb.name = facebook_page["name"]
@fb.access_token = facebook_page["access_token"]
@fb.uid = facebook_page["id"]
@fb.url = @url['link']
#install or not install
if @graphs.get_object("me/tabs/"+APP_ID.to_s).count > 0
@fb.install = 1
else
@fb.install = 0
end
@fb.save
end
end
end
是否有其他人有类似的问题。怎么解决?
答案 0 :(得分:0)
听起来您的访问令牌已过期。它们不会持续很长时间。我猜你几天前把它保存在你的数据库中,它工作了一段时间但后来过期了。您需要在每个会话中获取新的访问令牌,并在数据库中更新它。