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 would like to post an url, image and text at the same time to facebook using Sharekit in iOS. Is it possible? If so, how do I do it? Any guidance.

I would like to acheive something like this. Need some help.

I have tried something like this:

SHKFacebook * sharer = [ [ [ SHKFacebook alloc ] init] autorelease ];
    SHKItem * item = [ SHKItem URL:[ NSURL URLWithString:@"http://google.com" ]
                             title:@"my title"
                       contentType:SHKShareTypeURL ];
    item.facebookURLShareDescription = @"my description";
    item.facebookURLSharePictureURI = @"http://www.userlogos.org/files/logos/pek/stackoverflow.png";

But doesn't seem to post with the description...

EDIT:

my facebooksharedescription and facebookshareuri looks like this:

- (NSString *)facebookURLSharePictureURI {
    return nil;
}

- (NSString *)facebookURLShareDescription {
    return nil;
}

Do I need to change anything in this.

When i change to forcepreIOS6posting,it gives me this error:

the operation cannot be completed.(com.facebook.sdk. error 2.)

Need some guidance on these two as well...

share|improve this question

1 Answer

see sharer specific extensions in SHKItem.h and DefaultSHKConfigurator.m in ShareKit 2.0. It is clearly described there.

You can set link, image and description + user can add some message if you decide to present the dialogue to user.

Note, that this works on ShareKit type of sharing dialogue (pre iOS6). On iOS6 ShareKit uses new native social.framework dialogue, where this type of behaviour is not possible. You can force pre-iOS6 behaviour even on iOS 6 in your configurator subclass (again, for more info check DefaultSHKConfigurator.m.

If you decide to use ShareKit, make sure to follow sharekit install wiki literally.

EDIT: this is pasted from ShareKit sample app, ExampleShareLink.m file. It is a content type video, but you can use these facebook sharer specific extensions for any content type.

SHKItem *item = [SHKItem URL:[NSURL URLWithString:@"http://www.youtube.com/watch?v=3t8MeE8Ik4Y"] title:@"Big bang" contentType:SHKURLContentTypeVideo];
item.facebookURLSharePictureURI = @"http://www.state.gov/cms_images/india_tajmahal_2003_06_252.jpg";
item.facebookURLShareDescription = @"description text"; 

EDIT 2: if you followed wiki carefully, you got to the point 4 - Configuration. In your configurator subclass, override

- (NSNumber*)forcePreIOS6FacebookPosting {
    return [NSNumber numberWithBool:false];
}

and set to true. You can configure (override) many other things, see DefaultSHKConfigurator.m

share|improve this answer
i am following sharekit.. it would be nice if you could show an example...it will be useful for the rest as well... – lakesh Dec 6 '12 at 17:32
On iOS6 ShareKit uses new native social.framework dialogue, where this type of behaviour is not possible. You can force pre-iOS6 behaviour even on iOS 6 in your configurator subclass (again, for more info check DefaultSHKConfigurator.m. Hw to do this? – lakesh Dec 7 '12 at 3:33
ok.. thanks first of all.. I have changed it to forcePreIOS6Posting but when i post to facebook, I get this error: The operation cannot be completed.(com.facebook.sdk.error.2). How do solve this? – lakesh Dec 7 '12 at 15:16
edited the question again... – lakesh Dec 7 '12 at 15:21
Well, this error is rare, but known, unfortunately no solution yet. It happens sometimes when authentification is messed. Try again after logging off the user from facebook. If this does not help, delete the app and run again. You can follow this thread for updates on the issue. – Vilém Kurz Dec 7 '12 at 15:52
show 8 more comments

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.