我用来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_graph
API 在 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
故事。