Add image and description on facebook with sharekit

I use sharekit to share text on facebook, I want to add an image next to the text, as in this photo:

enter image description here

Any ideas how to do this? and is there another suitable library like sharekit? Thanks.

+4
source share
2 answers

Add the og: image meta tag to your head html block.

http://developers.facebook.com/docs/reference/plugins/like/

+1
source
NSString *urlImage = @"some Image URL "; [item setCustomValue:urlImage forKey:@"image"]; 

// element is shareitem

Gotta get what you need.

0
source

All Articles