I'm using Ruby on Rails ails with the Koala gem to post a link to the users wall.
My Koala method looks like this:
graph = Koala::Facebook::API.new(user.oauth_token)
graph.put_wall_post('', {
link: "http://myfqd.com"
});
The link gets posted but there is no title, no description just the url gets displayed in the box.
The page which is getting posted is totally valid with all the og tags and stuff. Already debugged it with facebooks debugger.
Is it in general not possible to do this?
Thanks in advance!