您的位置:首页 > 其它

how to post URL with Image on facebook by ShareKit

2011-12-18 22:14 561 查看


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];
}


iphone objective-c ios

facebook
sharekit
link|improve
this question
asked May
16 at 22:54





hanumanDev

731314

91% accept rate
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
answered May
17 at 3:58





Deepak

18.6k31124

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
answered Jul
19 at 8:07





Ikhsan
Assaat

112

This
doesn't appear to work, but this solution does: stackoverflow.com/questions/7122414/…cannyboy Aug
31 at 15:25
feedback
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: