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 have used sharekit in my iPhone project to publish on facebook and on twitter.

But at every time when I share on facebook or twitter there is one popup coming and on that send button click content will be share.

The issue is that I don't want this popup and want to publish directly on Facebook or on twitter.

Please give Idea if anybody has.

share|improve this question
wonder why down votes? To answer the question, autoshare is currently not implemented on ShareKit for Twitter or Facebook. – Vilém Kurz Jul 12 '12 at 22:45

1 Answer

up vote 3 down vote accepted

I found the solution.

In SHKFacebook.m and SHKTwitter.m there is one function "shouldAutoShare" It should return yes and your probleb is solved.

My problem is solved with this I hope it's also helps you.

Thanks

share|improve this answer
Hi Hardik Shah.. Thanks for your answer it helps. what code i have to use to send the post.. Much appreciated – Vino Aug 13 '12 at 13:11
Hi, Vinoth The basic sharing code is below. SHKItem *item = [SHKItem text:[NSString stringWithFormat:@"Sharing text goes here..."]]; [SHK setRootViewController:self]; [SHKFacebook shareItem:item]; But you need more configuration and settings for that use below link. github.com/ShareKit/ShareKit/wiki/Installing-sharekit I hope it will help you and your problem will solved. – Hardik Shah Aug 17 '12 at 7:09
Hi Hardik, Thanks for your link which i have done it perfectly.. what i am looking for is how to post direct messages to the facebook instead of any dialog boxes.. – Vino Sep 4 '12 at 13:46

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.