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

iphone: facebook dialog appear and disappear right away using sharekit

I successfully integrate sharekit into my app. At first, I was able to have the facebook up and running, able to login, and publish it but problem was with the twitter was unable to post "could not authenticate with oauth" so I added the one line in…
merrill
  • 593
  • 5
  • 14
  • 34
2
votes
1 answer

Do we have an update of ShareKit for iOS 5 which supports automatic reference counting?

I am trying to migrate my app which was initially developed in iOS 4.3 to iOS 5. All the third party code is being migrated with Xcode's refactor tool. But it doesn't convert the code and shows a lot of errors with the third party files like…
2
votes
1 answer

How to resolve error: "The post’s action links must be valid URLs"

Using the latest version of ShareKit to post URLs like so: [SHKFacebook shareURL:[NSURL URLWithString:@"http://www.google.com"]]; is resulting in the following error message being displayed (in a web view): Application response error The post’s…
Nick Dowell
  • 2,030
  • 17
  • 17
2
votes
1 answer

sharekit doesn't let me set custom facebook messages when sharing

When I share an image via Facebook using the latest version of the sharekit library, it sets the pre-filled status default message as the message, but doesn't give the user the opportunity to change that message like you can when sharing using…
Joseph Perla
  • 449
  • 1
  • 4
  • 6
2
votes
1 answer

Can't connect to Facebook via Facebook iOS SDK

I'm trying to connect to facebook from my iOS application, so I can make a wall-post. I've tried using Sharekit, and also the Facebook mobile API. Using the 'stable' Sharekit, I can connect, but I'm lacking features I need with that version. So I've…
jamesinkster
  • 55
  • 1
  • 5
2
votes
1 answer

ShareKit Not showing text on Facebook

I am having some problems with ShareKit on Facebook. I have no issues logging in on facebook, but when I try to post the text, the facebook dialog pops up, and there is no text at all in the dialog. Here is the sharekit code in my project. //…
Yenyi
  • 419
  • 5
  • 19
2
votes
3 answers

How to retrieve Twitter Username using Sharekit

I have read the docs and many forum posts regarding this, but I just cannot retrieve the username of the authorised user while using Sharekit. I am using oAuth. The user can authenticate ok, and I can post status updates to Twitter. The docs for…
Peetz
  • 167
  • 1
  • 14
2
votes
1 answer

Sharing with facebook using Sharekit giving Application Response Error

I am using share kit to integrate facebook and twitter in iphone application. I want to share text message to Facebook and twitter. On facebook I am getting "Application Response Error The post's action links must be valid URLs. You can see this…
Arvind
  • 543
  • 1
  • 5
  • 17
2
votes
1 answer

iOS >> ShareKit >> Lots of Warnings / Latest Version?

I'm implementing ShareKit in my app; I'm using XCode4 and have downloaded the ShareKit version from the official site (I think it's the official one). Everything is working fine, but I get many warnings from the ShareKit inner files; Things like:…
Ohad Regev
  • 5,641
  • 12
  • 60
  • 84
2
votes
1 answer

ShareKit SHKFacebookSessionProxyURL

I'm implementing ShareKit in my app. In the SHKConfig.h file, in the section where the Facebook data is inserted, there is a line saying: #define SHKFacebookSessionProxyURL @"". What am I supposed to enter there?
Ohad Regev
  • 5,641
  • 12
  • 60
  • 84
2
votes
2 answers

Sharekit status sharing with Facebook, problems only after first login

I am sharing an URL with sharekit facebook like this: NSURL *url = [NSURL URLWithString:someurl]; SHKItem *item = [SHKItem URL:url title:@"Some text"]; [SHKFacebook shareItem:item]; The first time this is shared, I am directed to the facebook login…
Sylvia
  • 21
  • 2
2
votes
1 answer

Error while doing facebook integration

I am using open source code sharekit for facebook integration in iOS but i am getting error as "FT_Load_Glyph failed: glyph 65535: error 6". I tried same code on another mac machine its working fine.I tried it for all 4.0 versions but not getting…
Swapnil
  • 1,858
  • 2
  • 22
  • 49
2
votes
1 answer

iOS - Getting Captcha Every Time When Sharing to Facebook using ShareKit

We are using ShareKit, an excellent open source framework for integrating social sharing services into iOS apps. We have been seeing lately that sharing to FaceBook triggers a captcha prior to submission almost every time. Needless to say, this…
Mark Struzinski
  • 32,945
  • 35
  • 107
  • 137
2
votes
2 answers

How to connect facebook with sharekit?

I am a new bie and first time using Facebook in the application. For this I am using sharekit.. And it works fine in the example... Now I have some specific requirement... it is like i want to make a button..whenever i click this button...it should…
Jean-Luc Godard
  • 1,873
  • 3
  • 28
  • 53
2
votes
2 answers

ShareKit twitter profile picture update error

when i try to update the twitter profile picture, i get the following error: "the operation couldn't be completed. (kCFErrorDomainCFNetwork error 303.)" I've only added one line of code to the original source code: (in the share function) [item…
astazed
  • 649
  • 1
  • 10
  • 24