I am developing an rails appplication that is communicating heavily with Facebook.
The concept is that users can upload images and there will be a kind of a gallery with thumbnails of these images and a "like-count" indicator.
I am using the koala gem.
I successfully posted an image to my wall like this:
if current_user && session[:fb_token]
@user_graph = Koala::Facebook::API.new(session[:fb_token])
end
@user_graph.put_picture(@post.photo.url)
In my _post.html.erb I do something like this:
<div class="fb-like left_float" data-href="<%= post.photo.url %>" data-send="false" data-layout="button_count" data-width="170" data-show-faces="false" data-font="segoe ui"></div>
If I just include this html snippet from facebook, I don't get the right results, as this points to the same uploaded image but not to the post created before. I think I need some kind of post_id from the Facebook post that i created before?
Any ideas ?
update
the put_picture method returns the following:
id: '109668002508542'
post_id: '100003960282996_109668032508539'
but when I check these IDs using http://graph.facebook.com/109668002508542 or
@user_graph.get_object('109668002508542')
I get no information, no likes and just a 'false'