Publish a link through the Facebook graphic API with a large picture

While the link used to have only a small (90x90) image, it looks like links can now have larger images (e.g. 400x208) in your channel.

This can be seen if you insert a link with a large og: image in the "Update Status" field in the Facebook user interface (for example, http://allthingsd.com/20131003/facebook-tries-to-make-home-more-inviting- by-welcoming-photos-from-other-services / )

It also seems that some third-party applications may also post a link to your channel. For example, if I posted the link above with HootSuite, the image will appear in large size.

But, when we tried it with an API, we can’t get anything but small 90x90 images with a link.

When you use the Graph API, does anyone know which fields need to be passed to / me / feed (or / me / links) to get a large picture? It seems that the links, name, description and image are enough - in this case the picture is still small.

Thanks!

+4
source share
2 answers

Not sure what you still make out. But I was able to post a large image and link using below, with PHP and cURL over OG.

$data['picture'] = "http://www.example.com/image.jpg";
$data['link'] = "http://www.example.com/";
$data['message'] = "Your message";
$data['caption'] = "Caption";
$data['description'] = "Description";

I completed this tutorial .

, . , 900x900. . 9090 - FB.

+2

.

? type = large .

:  responsePost = objFacebookClient.Post( "/me/feed", ) + "? type = large";

+1

All Articles