Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm using Sharekit2.0 to share images to facebook and twitter.

Here is the code used for sharing the image in facebook.

SHKItem *sharerItem = [SHKItem image:image title:@""];

SHKTwitter *sharer = [[SHKTwitter alloc] init];
[sharer setItem:sharerItem];
[sharer share];

But this not showing any preview of the image when sharing (like twitter is showing). just a text view to enter title for image.

My question would be: is it possible to show to image preview when sharing to facebook ?

Thanks

share|improve this question

1 Answer

Try:

SHKItem * sharerItem = [SHKItem image:image title:@"P"];
[SHKTwitter shareItem:sharerItem];
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.