之前有人使用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
中的内容吗?有人愿意分享他们的经历吗?
答案 0 :(得分:4)
将feed
更改为links
:
client.put_object(user.facebook_uid, 'links', options)