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
0 answers

share custom photo album images

I created custom photo album for capturing photos. And i invoked this album inside my app. After clicking button the album is invoked. But i can't share this image to facebook. I used socialframework for sharing. code: photopick= [UIButton…
0
votes
0 answers

Unknown Error twitter

I have a question, I know there a new version of ShareKit 2.0, but I only use facebook and twitter, I adapted the code to my needs and I have corrected some mistakes, I will not change the version because it would change everything that I have…
0
votes
1 answer

How do i add 'recipient' /'To' field while composing email using sharekit plugin for phonegap?

I am using sharekit plugin for phonegap in my application. This plugin allows me to set the body and subject of the email . However it does not have an option to set the 'to' /recipient field. I do not know Objective C. Can you please help me…
vijar
  • 733
  • 4
  • 14
  • 23
0
votes
1 answer

ShareKit Social.framework issue

I want to use ShareKit but I got this error: dyld: Library not loaded: /System/Library/Frameworks/Social.framework/Social Referenced from: /Users/developer/Library/Application Support/iPhone…
Matrosov Oleksandr
  • 25,505
  • 44
  • 151
  • 277
0
votes
1 answer

Add shareToSms function to Cordova ShareKit Plugin

I would like to implement a function to directly share to Sms in the ShareKit Plugin. It have 3 builted-in function to share directly to Facebook, Mail and Twitter. I took a look in plugin code and it seems to me pretty easy, taking as example the…
teone
  • 2,153
  • 3
  • 25
  • 49
0
votes
2 answers

Cordova/Phonegap 2.5 + Sharekit Plugin + FacebookConnect

I'm developing an app using cordova phonegap 2.5.0 and I want to implement both sharing in iOs and facebookConnect. I'm using Sharekit 2 + Sharekit Plugin for phonegap and i'm having no issues with the sharing, but some trouble with facebook…
teone
  • 2,153
  • 3
  • 25
  • 49
0
votes
2 answers

iPhone:Error occurs while uploading image on twitter using sharekit

I am using sharekit to upload the image on twitter. I have set keys and callback URL perfectly. But after entering my login and password credentials to upload image on twitter I got following error message. "There was a problem requesting access…
user1954352
  • 1,577
  • 4
  • 14
  • 16
0
votes
1 answer

Cannot find declaration for OFFlickrAPIRequestDelegate

Building my app in XCode fails: Cannot find protocol declaration for 'OFFlickrAPIRequestDelegate'. I've come as far as understanding that the issue is caused by Sharekit. Can someone please point me to the solution? Do I need to update submodule,…
0
votes
1 answer

requesting access from Twitter on Sharekit?

I'm using Sharekit and it used to work perfectly without any pbm, since two days I still get this error message whenever I try to share something with Sharekit in my app There was a problem requesting access from Twitter Sharing with other services…
hafedh
  • 539
  • 1
  • 9
  • 26
0
votes
1 answer

Twitter Integration issue using sharekit in ios?

Am using sharekit sdk for twitter sharing it is working fine before suddenly from two days it was showing problem like "There was a problem to accessing Twitter" can any one have a idea to find out solution
sabir54
  • 9
  • 2
0
votes
3 answers

Sharekit - ndefined symbols for architecture i386:

Undefined symbols for architecture i386: "_OBJC_CLASS_$_EvernoteSession", referenced from: objc-class-ref in AppDelegate.o "_OBJC_CLASS_$_SHK", referenced from: objc-class-ref in AppDelegate.o "_OBJC_CLASS_$_SHKConfiguration", referenced from: …
teone
  • 2,153
  • 3
  • 25
  • 49
0
votes
2 answers

Posting text to facebook using ShareKit on ios 5

I'm updating an existing IOS application that uses ShareKit to share to Facebook and Twitter. I've integrated ShareKit 2.0 and followed all the instructions. I have no problems sharing to Facebook and Twitter under IOS 6. On IOS 5 however, Twitter…
Jon Schlossberg
  • 329
  • 2
  • 11
0
votes
1 answer

Sharekit 2.0 Twitter send several images at once

Is there a way to send several images at once when using Sharekit 2.0 Twitter? By looking at docs it may seem that's not possible because when can share just one item at a time. I am correct? or there's another approach that I could try?. Thanks a…
Pablo
  • 3,433
  • 7
  • 44
  • 62
0
votes
1 answer

Facebook sharekit 2.0 troubles

- (void)authorize:(NSArray *)permissions { self.permissions = permissions; [self authorizeWithFBAppAuth:NO safariAuth:NO]; } Ok, the above code is what I am trying to implement. But this code is giving me two errors. The first one is property…
Falcon Hawk
  • 49
  • 1
  • 5
0
votes
1 answer

Share Picture on twitter with shareKit. A shorten URL is visible instead of actual attached image in tweet

I am using shareKit to share something on twitter. I successfully send tweet (only) text by using SHKItem *item = [SHKItem text:@"sample tweet"]; [SHKTwitter shareItem:item]; I try to attach UIImage with tweet using SHKItem *item = [SHKItem…
abdus.me
  • 1,819
  • 22
  • 34