0

我用来fb_graph在 facebook 帐户中创建一个帖子。它工作正常。

 me = FbGraph::User.me(session[:fb_token])
 me.feed!( :message => 'This is test message', :link => 'http://site.com', :name => 'Sports', :description => "Manish placed a bet on India vs England on Sports.com")

但是现在,我需要使用fb_graphAPI 在 facebook 上发布一个故事。有没有小伙伴可以帮忙啊!

就像在 iOs 中一样:http: //developers.facebook.com/docs/tutorials/ios-sdk-tutorial/publish-open-graph-story/

在 ruby​​ gem 中,fb_graph我发现了一些与 Story 相关的代码: https ://github.com/nov/fb_graph/search?q=story&ref=cmdform

这意味着fb_graph应该支持open-graph故事。

4

1 回答 1

2

它在他们的wiki中给出

# Publish an activity
action = me.og_action!(
  app.og_action(:custom_action), # or simply "APP_NAMESPACE:ACTION" as String
  :custom_object => 'http://samples.ogp.me/264755040233381'
)

https://github.com/nov/fb_graph/wiki/OpenGraph

于 2013-06-24T09:36:22.837 回答