OAZ
OAZ

Reputation: 121

Share Post With Image Text And url To facebook

I am using share kit in my app and trying to post to facebook pose that include small photo, when clicked on facebook it will be opened to larger size like any other photo.

Link to the app on the app store and text about this post.

I am using this code:

    SHKItem *item;
NSURL *url = [NSURL URLWithString:@"http://itunes.apple.com/us/app/angry-birds/id343200656?mt=8"];
item = [SHKItem URL:url title:[NSString stringWithFormat:@"I'm playing someGame on my iPhone! My Highscore is %i, think you can beat it?", 1400]];    
[SHKFacebook shareItem:item];

What do I need to change to add photo to this post?

Upvotes: 2

Views: 858

Answers (1)

DMCS
DMCS

Reputation: 31870

For ShareKit See: http://www.getsharekit.com/docs/#image

Upvotes: 2

Related Questions