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
2
votes
1 answer

iOS ShareKit, twitter logout? facebook status empty?

I am using ShareKit plugin for iPhone to enable social sharing for the application I'm working on. I set up everything, I stripped it to have Facebook and Twitter services only, connected successfully to both and now I have 1 problem in each of the…
luigi7up
  • 5,779
  • 2
  • 48
  • 58
2
votes
0 answers

ShareKit programmatically click "publish"

EDIT: It should be noted that I stated in my original question that I was able to get this working for Twitter (I used the referenced question/answer to get that working) . . . I just needed the answer for how to do it with Facebook. I haven't found…
bcb
  • 939
  • 1
  • 8
  • 18
2
votes
3 answers

iphone twitter and sharing

Has anyone encountered the following error message when sending to Twitter? "Error: Incorrect signature" And on the debug console: <0xf14cf80 SHKTwitter.m:(356)> Twitter Send Status Error: {"request":"\/1\/statuses\/update.json","error":"Incorrect…
Ken
  • 30,811
  • 34
  • 116
  • 155
2
votes
0 answers

How to share post from background in objective c using facebook

How to implement background share post (image,title) to facebook(without displaying dialog or popup) using objective c
narendrakumar b
  • 115
  • 1
  • 12
2
votes
1 answer

iOS ShareKit getting error while sharing video on youtube invalid_client

We are using ShareKit for video sharing on youtube, code was working fine but right now getting error <__35-[SHKYouTube authorizationFormShow]_block_invoke SHKYouTube.m:(148)> YouTube authentication finished with error:Error…
Abdul Rauf
  • 343
  • 1
  • 2
  • 15
2
votes
1 answer

ShareKit - share on Facebook

I am using ShareKit to share a simple text on Facebook. I use cocoapods to install ShareKit on my application (with iOS7, and XCode5), and follow the configuration tutorial ConfigurationShareKit. More specifically, I do the following things: 1)…
chipbk10
  • 5,783
  • 12
  • 49
  • 85
2
votes
2 answers

how to know which pod spec file your cocoapod install is pointing to

I'm trying to install sharekit via cocoapods. If I search for sharekit on the cocoapod website.. I'm instructed to put this in the podfile: pod 'ShareKit', '~> 2.5' the sharekit pod on the website links to this podspec file, which is tagged as…
abbood
  • 23,101
  • 16
  • 132
  • 246
2
votes
3 answers

PBXCp Error ShareKit.bundle is not built

I'm working on a rather old iOS Xcode project using ShareKit. I have updated ShareKit to the newest available version following the installation guideline. After working through all of the update issues and errors I've hung up with this PBXCp Error…
hoelle2011
  • 23
  • 5
2
votes
0 answers

ShareKit not working in iOS app with storyboard

I am trying to integrate share kit to my iOS application. I added sharekit as a submodule, added all frameworks, received some linker errors but find a way to solve them and finally configured share kit DefaultSHKConfigurator.h file: #import…
2
votes
3 answers

Sharekit 2.0 build failing issues

I recently updated Sharekit 2.0 in my app after moving to IOS 7, i used the update git commands as specified on the sharekit wiki. However now when i run the app its failing to build with the following errors: Undefined symbols for architecture…
SmokersCough
  • 967
  • 7
  • 22
2
votes
1 answer

ShareKit install via CocoaPods issue

I install SareKit via CocoaPods I have got this exemption when I try to post my message to vk.com service: Terminating app due to uncaught exception 'NSInternalInconsistencyException', reason: 'ShareKit has been refactored to be used as Xcode…
Matrosov Oleksandr
  • 25,505
  • 44
  • 151
  • 277
2
votes
2 answers

CocoaPods ShareKit install issue

I try to install ShareKit 2.2 using CocoaPods. In command line I enter next: touch Podfile open -e Podfile Edit my Podfile with lines below: platform :ios, '5.0' pod 'ShareKit', '~> 2.2' Save file and enter pod install After line Installing…
Matrosov Oleksandr
  • 25,505
  • 44
  • 151
  • 277
2
votes
2 answers

How to get notified the user shared something using ShareKit?

I'm using ShareKit to allow users to share stuff from my app to Twitter and Facebook. After the user shared the object, I would like to get my app notified about it, in order to pass an API call to my server - so it can handle notifying the users…
kender
  • 85,663
  • 26
  • 103
  • 145
2
votes
0 answers

sharekit gives warnings regarding conforming. Should I ignore it?

I got the sharekit library at : https://github.com/ShareKit/ShareKit/wiki/Installing-sharekit I followed all the instructions and now when I run my app, I get the following warning: GTMMethodCheckMethodChecker: Class UIKeyboardCandidateUtilities…
kratos
  • 2,465
  • 2
  • 27
  • 45
2
votes
0 answers

Posting images to Facebook/Twitter via Sharekit for Phonegap?

is it possible to share images from camera/gallery to Facebook/Twitter in a Phonegap app with the ShareKit plugin? Is it possible to do it with any other plugin? I see that Facebook Connect does not have that option, how do phonegap developers deal…