我是否正确发布到Facebook?

时间:2012-03-22 11:57:40

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

之前有人使用Koala gem在Facebook墙上发帖吗?我能够发布罚款(显示图片),但似乎在实际的墙贴上没有“分享”链接。 “喜欢”和“评论”虽然出现了。

我有以下内容:

        client = Koala::Facebook::API.new(user.token)

        options = { 
          :message     => "Message here",
          :description => "Description here",
          :link        => "http://#{APP_CONFIG['host']}/foobars/1", 
          :picture     => "#{photo.url}" 
        }
        client.put_object(user.facebook_uid, 'feed', options)

我错过了options中的内容吗?有人愿意分享他们的经历吗?

1 个答案:

答案 0 :(得分:4)

feed更改为links

,似乎可行
client.put_object(user.facebook_uid, 'links', options)