4

I am using sharekit to share text on facebook, i want to add a picture near the text like in this photo :

enter image description here

Any idea how to do this? and is there other suitable library like sharekit ? Thanks.

hafedh
  • 539
  • 1
  • 9
  • 26
  • answer is here: http://stackoverflow.com/questions/7122414/sharekit-posting-linked-image-to-facebook-wall – cannyboy Aug 19 '11 at 21:39

2 Answers2

1

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

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

bkaid
  • 51,465
  • 22
  • 112
  • 128
Jeff Sherlock
  • 3,526
  • 1
  • 16
  • 24
0
NSString *urlImage = @"some Image URL ";
    [item setCustomValue:urlImage forKey:@"image"];

//item is shareitem

Should get what you wanted.

Cosmin
  • 21,216
  • 5
  • 45
  • 60