Facebook Connect + Phonegap 3 - facebook

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.

Related

how to make official Facebook unity plugin work friendly with prime31 unity plugins

As far as I know, if I choose official facebook unity plugin, then a few prime31 unity plugins for android would be broken because they all override the main Unity Activity. Because there are many prime31 plugins but only one official facebook plugin, so an ideal solution would be that only changes to facebook plugin is applied.
The question is: how? Does anyone have experience on this?
Best,
Raven
Well, this is a bit old but no one has answered. You can use facebook with prime31's other plugins but you need a small modification to the FacebookPostProcess.cs ( changing a line from some default to 9999 ). I've ran into this issue twice, once for developing an app and another for a game. It has worked both times. Heres the official documentation: http://prime31.com/docs ( the red text box at the top ) and https://gist.github.com/prime31/6417808 for the code for implementation. Hope this helps.

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.

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

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.

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