This new miniature view on Facebook (see image below this text). But every command or property that I tried, I never get when publishing using api ...
Here's what my post looks like:
$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 image line that fb takes for manual wiring:
<meta property="og:image" content="<?php echo $og_image; ?>" />
Please believe me that $ og_image and $ pic2 are exactly the same url, not a single thumbnail, full quality, far beyond 720p.
I would really appreciate any material on this that is not "use? Type = large" or sth. like this.

source
share