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 am using the sharekit to use facebook

Now here..

I want to "share link" in the facebook for this I have found this way in the sharekit documentation

  // Create the item to share (in this example, a url)
NSURL *url = [NSURL URLWithString:@"http://getsharekit.com"];
SHKItem *item = [SHKItem URL:url title:@"ShareKit is Awesome!"];

// Share the item
[SHKFacebook shareItem:item];

But I dont know this is not working..I am able to see opened facebook page but this link is not being shared in my Facebook page.

Can anyone tell me the solution??

share|improve this question
Please share complete method of sharing a URL, as I m new to Sharekit and do not know ho to share a link.... – AsifHabib Apr 4 at 11:41
@AsifHabib ... use above code and do changes in configuration file as stated in sharkit website – Jean-Luc Godard Apr 4 at 11:48
#define SHKFacebookKey @"" #define SHKFacebookSecret @"" #define SHKFacebookSessionProxyURL @"" – Jean-Luc Godard Apr 4 at 11:48
write above code and then code of the question @AsifHabib – Jean-Luc Godard Apr 4 at 11:49

2 Answers

up vote 6 down vote accepted

Did you change the configuration file?

You need to set the correct key and secrets in the configuration.

share|improve this answer
ohh ...I was just making the dummy project so I was not aware of that...thanks I'll do that..new bie..:( here – Jean-Luc Godard Apr 11 '11 at 10:50
Do u know any tutorial or any example which can help me with this? – Jean-Luc Godard Apr 11 '11 at 10:57
Check the documentation on the sharekit website. getsharekit.com/install – rckoenes Apr 11 '11 at 11:01
Please share complete method of sharing a URL, as I m new to Sharekit and do not know ho to share a link.... – AsifHabib Apr 4 at 11:45
@AsifHabib its a bit rude to just ask for code, thus I shall not give you anything except some advise: Read the share documentation. – rckoenes Apr 4 at 11:46
show 1 more comment

You just need to fill these details in SHKConfig.h file

#define SHKFacebookKey              @""
#define SHKFacebookSecret           @""
#define SHKFacebookSessionProxyURL  @""
share|improve this answer

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.