iPhone:Error of misconfiguration for facebook integration occurs [duplicate] - iphone

This question already has answers here:
Closed 10 years ago.
Possible Duplicate:
Facebook App-Application is misconfigured for Facebook integration
I have registered my app on facebook and I use sharekit for facebook integration when I try to send msg from my app I get the error msg as follows:
"Sorry, the application you are using is misconfigured for Facebook integration. Please download the newest version of the application."
I am not able to understand why does this msg generate?
if you have any idea then share it.
Thanx in advance.

This Probably happens because you are using ShareKit which is not Update.
Although Sharekit is One of the Good way to integrating the Social SDk in iphone Apps
When you are going to use ShareKit,one things You should take care is that
you will have to keep Updated Version of Sharekit.
You can see this comment on ShareKit Documentation.
"Be Sure to Stay Up to Date
To make sure you keep ShareKit up to date with the latest bug fixes, enhancements and additional services, follow ShareKit on the blog, Twitter, and/or GitHub."
I suppose You should go through below Link and just check
are you using the Latest version Of SharekIt..?.
You need to go through this Link for Sharekit doc
I Think ,It'll Really helpful to you.

Related

Facebook Connect + Phonegap 3

I'm building an app with Phonegap 3 (it's necessary to be version 3 because Barcode Scanner plugin).
I need to user also Facebook Connect plugin, but there is not already a version for Phonegap 3.
Do you know how can I solve this issue, once I need to offer Facebook Login and Facebook Activites Share for my app?
Thanks in advance!
The only option you have right now is to update the plugin yourself for version 3.0+ or wait for someone else to do it. Sorry it is not a great answer but it is the only answer at this time.
Please see my answer about using the Facebook plugin here: https://stackoverflow.com/a/19371560/368762
You can try to update the plugin yourself, or if you look on the "Network Graph" on the Github page for the plugin, you can see some forks that other people have been maintaining. One fork says it has been updated to work with 3.0 so I'd suggest that you try that.

Integrating Twitter with sharekit 2.0

I want to integrate shareKit 2.0 in my app. But I wanted only for the purpose of Twitter.
I Followed the installation steps on sharkit wiki but ended with the error youTube SDK not found etc...
I see lot of products in my app product folder(Fiker, youtube sdk, ect...)
As I only needed twitter,I deleted other folder except Twitter from services folder. Please help me with the sharkit twitter Integration.
I want to update sharekit As i am facing oAuth_verifier issue in twitter with the old sharekit version.
sharkit 2.0 source Code URL:
https://github.com/ShareKit/ShareKit
Installations Steps URL:
https://github.com/ShareKit/ShareKit/wiki
May be you don't need ShareKit? If you just going to set up twitter share you can use ios integrated framework, here it is good tutorial.
New sharekit is very different from the old one, and you should not touch the code (delete anything) - the strongest reason is easy updating using git.
If you wish to use Twitter sharer only, check granular install

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 connect. I can make the connect itself using the built in function:
facebookConnect( );
and it seems to work, but I need to retrieve the facebook Uid after the connect.
Any suggestion?
Maybe this can help somebody else...
Because I can't find any documentation about my question I managed to solve in this way:
Use the official facebook SDK and facebook connect plugin - Instruction here https://developers.facebook.com/ios/ and here https://github.com/phonegap/phonegap-facebook-plugin - for the facebook connect. It is full of example and pretty simple to implement.
Added sharekit to my project with granular install - Instrutions here https://github.com/ShareKit/ShareKit/wiki/Granular-install - avoiding to installa the facebook part.
Added ShareKit Plugin - Instructions here https://github.com/phonegap/phonegap-plugins/tree/master/iPhone/ShareKitPlugin - and comment out from ShareKitPlugin.m all the refence to Facebook.
Now the share trough ShareKit is working and I'm going to manage the facebook share trough the official SDK.
Hope it could help...
#Teo_ne: After spending a lot of time, I found that Phonegap_Facebook_Plugin only work with IOS v6+, not support IOS v5.x due to the Social.framework.

Facebook App-Application is misconfigured for Facebook integration

I am developing iphone app which shares photos on social networks.For photo sharing I am using "Sharekit".I have created Facebook App and using its api key and secrete.(used correct api key and secret.).
When I try to share image with this app(even simple text),the following error comes.(even the facebook login popup doesn't appear.)
"Sorry,the application you are using misconfigured for Facebook integration.Please download the newest version of the application"
I would have uploaded snap shot but as a new user Stack overflow is not allowing to upload image..Any help will be appreciated.
Thanks.
apparently this problem was faced by me too.
Since i was using their old API methods..
it is really tough to find the cause now..
Although i have not used ShareKit..i believe it is also using the older methods.
I solved the problem by using their official tutorial on Facebook iOS integration
I noticed that the version of sharekit i am using 0.2.1 is pretty outdated one. The project was moved to github and the latest version 2.0 can be found here. The home site is outdated with version 0.2.1 so follow the github link for latest update.
You might want to take a look at Socialize: http://www.GetSocialize.com, which uses the newer methods. Full feature list at http://go.GetSocialize.com/features
Good luck!
DROdio

is there any single library for twitter sharing in ios4 and ios 5

I need to share one video url getting from my server in twitter.
And my app must be compatible for both ios 4.0 and ios 5.0.
I know that there is twitter+oauth library for ios 4.0 and twitter inbuilt library for ios 5.0. And my functionality is twitter library need to ask user credentials only once for twitter authentication and need to post that video url in background with out asking user permission.
From the second time onwards video must posted in background.
As per my knowledge we have different libraries we need to use but is there any solution that do implemant my task with one library.
Please help me.
For a beautiful implementation, check out DETweetComposeViewController.
It will provide you with a UI that looks almost identical to what iOS5 users now are growing accustomed to. The great point is, it works on iOS4 and iOS5 flawlessly.
GetShareKit was a basic library created by Nate Weiner that's now outdated. If you check it's GitHub source, the last commit was sometime in 2010. This version is buggy and has about 20+ compile warnings. this uses an older version of the Facebook and Twitter sharing mechanisms that are now deprecated and also, buggy. Clicking Twitter's "Share", for eg, won't dismiss the sharing dialog.
So, a bunch of developers forked off the original library and now maintain what's called ShareKit 2.0 SDK. If you check the wiki, you'll learn that all new services like Foursquare, LinkedIn, InstaPaper, EverNote have been added to this new version. Happy Coding!