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 sharekit/sharekit API to share via mail,twitter,facebook

NSDictionary *table = [[NSDictionary alloc] initWithObjectsAndKeys:@"SHKTwitter", SHKLocalizedString(@"Twitter", nil), @"SHKFacebook", SHKLocalizedString(@"Facebook", nil), @"SHKMail", SHKLocalizedString(@"Email", nil),@"SHKTextMessage", SHKLocalizedString(@"Text", nil),nil];

Class SharersClass = NSClassFromString([table objectForKey:"Facebook"]);
NSString *shareMsg = @"share message";
NSURL *shareUrl = [NSURL URLWithString:myURL];
SHKItem *item = [SHKItem text:shareMsg];
item.url = shareUrl;
[SharersClass performSelector:@selector(shareItem:) withObject:item];  

the sharing works but my problem is that the url is not displayed to the user in the facebook pop up however it's displayed on the user wall on facebook.com ... the same case happens with twitter ... but the links appears in mail and text sharing ... any idea what might be the problem ?

share|improve this question
can you please elaborate the question ? what I understand is you are not able to see the link in mobile device but you can see it in website .. right ?\ – Jean-Luc Godard Jul 24 '12 at 9:57
exactly this is the problem ! that happens with facebook and twitter only – ahmad Jul 24 '12 at 9:59
have you found any solution? – Jean-Luc Godard Jul 25 '12 at 5:33
not really no ! – ahmad Jul 25 '12 at 7:50
try something out .. may be some problem in the configuration .. genrally this thing shouldnt happen . – Jean-Luc Godard Jul 25 '12 at 9:25
show 2 more comments

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

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

Browse other questions tagged or ask your own question.