There is this new thumbnail view on Facebook (see image beneath this text). But every command or property I tried, I never get this when posting with the api...
This is how my post event looks like right now:
$status = $facebook->api('/me/feed', 'POST', array('access_token' => $page_access_token, 'fields' => 'picture.height(960).width(1833)', 'message' => $text, 'icon' => 'http://www.renoi.de/images/lg.jpg', 'link' => $link, 'name' => $title, 'user_generated' => 'true', 'images[0]' => $pic2, 'source' => $pic2, 'height' => '960', 'width' => '1833'));
And this is the og:image line that fb takes for manual posting:
<meta property="og:image" content="<?php echo $og_image; ?>" />
Please believe me that $og_image and $pic2 are exactly the same url, none thumbnail, full quality, far beyond 720p.
I would highly appreciate any input on this matter that is not "use ?type=large" or sth. like that.
So now that it is IMPOSSIBLE to do this with the API I am using a workaround as frustrating as it may be. It is a share button system on the left of my content.
The result on facebook can be seen here (actually pretty cool because it shifts more results into each other): http://lightningsoul.com/media/img/screenshot/likes_on_facebook_share_content.png
Hopefully FB will fix this at some point. If so I will, of course, inform you on here.
This is fixed with the design update immenent on the servers (I am using a beta server, so I am seeing things earlier).
Finally, thank you Facebook!
This code could work perfect for me: