如何从Facebook API Koala Gem获取用户帖子洞察

时间:2015-04-23 04:31:10

标签: ruby-on-rails facebook facebook-graph-api facebook-insights koala-gem

您好我想知道如何从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)"]})

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

3 个答案:

答案 0 :(得分: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

此外,您还可以通过考拉获取页面的帖子洞察。这对我有用。

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

答案 1 :(得分:1)

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

如果您在'Edges'处查看,您可以看到/见解仅适用于Pages。

'/洞察此帖子的见解(仅针对页面)。'

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

答案 2 :(得分:0)

Here您可以看到它仅适用于发布的页面 /{post-id}/insights(这是一个Page post)