Questions tagged [sharekit]

ShareKit: an iOS open source project to enable sharing of content via Facebook, Twitter, et al.

The project's home page is at http://getsharekit.com/

The project's Git repository is at https://github.com/ideashower/sharekit/

Takes aproximatly 5-10 lines of code to get many sharing services.

Update: ShareKit was once very useful and saved developers a ton of time. It is now obsolete and some sharers no longer work properly. In addition, most of the features ShareKit provided are now incorporated into Objective-C. There is ShareKit 2, which has some new features, is updated and well documented.

449 questions
0
votes
1 answer

Unlock a Level After Sharing on Facebook/Twitter

I am creating an iPhone game with multiple levels, and I want one of the levels to be unlocked after the person playing it connects to Facebook or Twitter and shares the app. Is there a way to set this up relatively easily? I was also considering…
felix_xiao
  • 1,608
  • 5
  • 21
  • 29
0
votes
1 answer

ios sharekit 2.0 not showing image preview when sharing image

I'm using Sharekit2.0 to share images to facebook and twitter. Here is the code used for sharing the image in facebook. SHKItem *sharerItem = [SHKItem image:image title:@""]; SHKTwitter *sharer = [[SHKTwitter alloc] init]; [sharer…
user1078065
  • 412
  • 1
  • 5
  • 19
0
votes
2 answers

Sharing text data on facebook ang twitter

I am working on an iphone quiz application. Now i need to share quiz result on facebook and twitter. I am wondering what to use. I've tried using sharekit but wasn't able to. Please give me step by step process of sharing data. Any other options…
manish1990
  • 23
  • 3
0
votes
2 answers

ShareKit - sharing on Facebook still show the demo app

I've got a problem in using the share kit function. I've got a button and its IBAction like below. But the problem is when I tab on button, it shows an ActionSheet with Facebook, Twitter and Pocket, I select Facebook, got authenticated, and then it…
0
votes
0 answers

Sharing my message with share kit to twitter

i imported sharekit library in my project and i write following codes SHKItem *item = [SHKItem text:@"sample message"]; SHKTwitter* twt = [[SHKTwitter alloc] init]; [twt setItem:item]; [twt share]; or SHKItem *item = [SHKItem text:@"sample…
SerkanHocam
  • 536
  • 6
  • 18
0
votes
1 answer

Sharing on Twitter using Custom View using SHK or Twitter Framework

I am trying to share using ShareKit Or iOS5 Twitter framework. However, I need to have a custom twitter view. The view will take the user input - the message to be shared and post it directly if the user is logged in or prompt for authorization. I…
Ahsan
  • 2,964
  • 11
  • 53
  • 96
0
votes
2 answers

share text on facebook from iOS application using sharekit

I want to share some text on facebook using sharekit. I found many solutions but no1 worked for me. I have imported sharekit and frameworks in my project. Now I want to share text: @"Hello everyone" directly (I mean not to choose from options: mail,…
Rendel
  • 61
  • 7
0
votes
1 answer

ShareKit Connect with Facebook

I have an application where users need to login/create an account in order to use it. I am trying to implement Connect with Facebook through ShareKit 2.0. Do you know if this is possible and can you please point me in the right direction? Thanks
Andrei Filip
  • 1,145
  • 15
  • 33
0
votes
1 answer

ios How to just login to facebook using ShareKit2.0 with sso?

What is the best practice to JUST login to facebook, using ShareKit 2.0? Now I'm using: service = [[SHKFacebook alloc] init]; [service authorize]; With : - (void)authorize:(NSArray *)permissions { self.permissions = permissions; [self…
user1078065
  • 412
  • 1
  • 5
  • 19
0
votes
2 answers

iOS Sharekit Semantic issues

I'm using sharekit for twitter integration. Application works fine with sharekit but compiler shows 25 warnings for semantic issues. Since app is running fine,is it ok to leave this issues without fixing them? Will leaving those issue crash the…
Rukshan
  • 7,902
  • 6
  • 43
  • 61
0
votes
1 answer

Does ShareKit work with iPhone OS 3.0?

If I simply set the deployment target to OS 3.0 will Sharekit still work on devices? It seems working fine in emulater but I don't have a OS 3.0 device to test it further.
Rukshan
  • 7,902
  • 6
  • 43
  • 61
0
votes
1 answer

ShareKit "SHK.h not found" downloaded from zip

"ShareKit "SHK.h not found" downloaded from zip!" I've tried using git submodule commands but with no luck. So I downloaded ShareKit 2.0 as a zip. But the main problem is that "SHK.h is not found". I think it should be visible even if there are no…
Riskov
  • 844
  • 7
  • 12
0
votes
1 answer

invalid v token expires twitter sharekit

I am using sharekit to share url from my xcode app. I am getting Invalid V Token expires and can not able to share link. any idea about this? Consider am testing on simulator and previously it was worked fine but now it through an error like this. I…
thiru
  • 17
  • 3
0
votes
1 answer

Facebook Posts Not Posting From App Unless Dialog Box Written In

I use ShareKit to share stories from my app to Facebook and Twitter. I click everything in the app to share, and it pops up with the dialog box giving me the option to Share or Cancel. If I click Share, it never posts. Not in my timeline or news…
user717452
  • 33
  • 14
  • 73
  • 149
0
votes
1 answer

Dependency Between the Twitter Credentials and Bitly credential

 I am using the ShareKit to share the articles in Twitter. For shortening the URL in Twitter sharing, I am using the Bitly.  Can I use the same Bitly credentials for different Twitter App Key in ShareKit?
Ramesh
  • 43
  • 12