I am using the following command to post a video link from youtube into facebook:
client.put_wall_post options[:message].text, {
:name => "Type O Negative",
:link => "http://www.youtube.com/watch?v=E67D-ZCuoEw",
:description => "Type O Negative"} , "me"
It works fine and facebook displays the first thumb for this image which is http://img.youtube.com/vi/E67D-ZCuoEw/1.jpg
But i want the second thumb: http://img.youtube.com/vi/E67D-ZCuoEw/2.jpg
So i pass the :picture argument as follows:
client.put_wall_post options[:message].text, {
:name => "Type O Negative",
:link => "http://www.youtube.com/watch?v=E67D-ZCuoEw",
:picture = > "http://img.youtube.com/vi/E67D-ZCuoEw/2.jpg",
:description => "Type O Negative"} , "me"
Doing this facebook does not recognizes my link as a embedded video and just shows the thumb with a link to the youtube page.
Any idea what is going on?