Sharekit - sending a url link to facebook

来源:互联网 发布:淘宝买东西怎么发国外 编辑:程序博客网 时间:2024/06/01 09:29

Sharekit - sending a url link to facebook

up vote0down votefavorite
share [fb]share [tw]

Below is the method I'm using with Sharekit to send an image and a title to facebook. I also want to send a URL along with the facebook post. If I try

SHKItem *item = [SHKItem image:image url:url title:titleString];

I get a too many arguments error message. Does anyone have any ideas on how this should be done? thanks for any help.

- (IBAction)myButtonHandlerAction    {                                   NSURL *url = [NSURL URLWithString:@"http://example.com/"];                NSString *titleString = [[NSString alloc] initWithFormat:@"*** %@ * \n\nGet the ***** App - It's Free!", entity.name];                UIImage *image = [[[UIImage alloc] initWithData:entity.image] autorelease];                     SHKItem *item = [SHKItem image:image title:titleString];                // Get the ShareKit action sheet                SHKActionSheet *actionSheet = [SHKActionSheet actionSheetForItem:item];                // Display the action sheet                [actionSheet showFromBarButtonItem:barbtn animated:YES];}
link|improve this question

 
feedback

2 Answers

activeoldestvotes
up vote1down voteaccepted

There is no method -[SHKItem image:url:title:]. So an error is being raised. Currently there is no mechanism to do what you require using ShareKit so you will have to customize ShareKit for your needs. You should also look at the Graph API.

link|improve this answer
 
feedback
up vote0down vote

Maybe what you want is a url item, with an image attached to it. If so, you can do this :

SHKItem *item = [SHKItem URL:[NSURL URLWithString:@"http://example.com/"] title:@"Check this link"];[item setCustomValue:@"http://example.com/someimage.jpg" forKey:@"picture"];[SHKFacebook shareItem:item];

I've implemented this with the latest sharekit, it works for me.

link|improve this answer
 
This doesn't appear to work, but this solution does: stackoverflow.com/questions/7122414/… – cannyboy Aug 31 at 15:25
feedback