3

嗨,我想知道如何从 Facebook API Koala Gem 获取用户帖子的见解。

我只找到了适用于 facebook 页面帖子但不适用于用户帖子的解决方案。

我将下面的代码用于用户帖子,但它只返回空数组。

@graph.get_connections('me', 'insights', metric: 'page_impressions', period: 'now')

更新

user = Authentication.where(user_id: current_user.id, provider: "facebook").first
oauth_access_token = user.token
@graph = Koala::Facebook::API.new(oauth_access_token)
@posts = @graph.get_connection('me', 'posts',{ fields: ['id', 'message', 'link', 'name', 'description', "likes.summary(true)", "shares", "comments.summary(true)"]})

上面的代码工作正常,但是当我尝试获取帖子见解时,它返回空数组。

4

3 回答 3

2

如果您使用omniauth-facebook gem,您只需要确保您在您的范围内拥有正确的权限,您就可以使用原始查询。

配置/初始化程序/omniauth.rb

OmniAuth.config.logger = Rails.logger

Rails.application.config.middleware.use OmniAuth::Builder do
  provider :facebook, {id}, {secret},
  :scope => 'email,manage_pages,read_stream,read_insights'
end

此外,您可以通过 koala 获取页面的帖子见解。这对我有用。

m = Koala::Facebook::API.new(User.find(5).oauth_token)
m = m.get_connections('me', 'accounts')
m = m.first['access_token']
@post_graph = Koala::Facebook::API.new(m)
@feed = @post_graph.get_connection('me', 'feed')
@postid = @feed.first['id']
@post_data = @post_graph.get_connections(@postid, 'likes', since: "2015-05-17", until: "2015-07-17")

https://github.com/arsduo/koala/wiki/Acting-as-a-Page

于 2015-07-18T03:23:59.053 回答
1

https://developers.facebook.com/docs/graph-api/reference/v2.3/post

如果您在“Edges”处查看,您会看到 /insights 仅适用于 Pages。

'/insights 这篇文章的见解(仅适用于页面)。

我希望我是对的并帮助了你。

于 2015-04-23T06:50:43.440 回答
0

在这里您可以看到它仅适用于页面帖子
/{post-id}/insights(这是一个页面帖子)

于 2015-05-06T13:20:52.800 回答