Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Anyone use the Koala gem to post on a Facebook wall before? I am able to post fine (with the picture displayed), but can't seem to have the "share" link on the actual wall post. "Like" and "Comment" appear though.

I have the following:

        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)

Am I missing something in options? Would anyone like to share their experience?

share|improve this question
Your first stop should always be the docs/wiki/etc. of the gem itself - there's an issue there describing this exact problem. – sevenseacat Mar 23 '12 at 3:12

1 Answer

up vote 1 down vote accepted

Seems to work by changing feed to links:

client.put_object(user.facebook_uid, 'links', options)
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.