originally by Olivier Louvignes forked and updated to work with modern Cordova and Facebook 2.2+ API by [Kris Erickson][https://github.com/kriserickson]
###Note: The IOS branch has been untested in over a year but will be updated soon.###
-
This plugin provides a simple way to use Facebook Graph API in Cordova.
-
This plugin is built for Cordova >= v3.3.0. Both iOS & Android are supported with the same javascript interface.
-
For iOS, this plugin relies on the Facebook iOS SDK that is bundled in the
FacebookSDK
folder (licensed under the Apache License, Version 2.0). -
For Android, this plugin relies uses the included MinimalFacebookSDK which as a JAR is 60K rather than 1.5Megs which the full Facebook SDK compiles to as a JAR.
-
Regarding the existing implementation : phonegap-plugin-facebook-connect built by Dave Johnson, this version does not require the Facebook JS sdk (redundant to native sdk). It is also quite easier to use (unified login & initial /me request) and it does support multiple graph requests (strong callback handling).
You can generate a sample XCode project by running samples/ios/create.sh
from the root of the repository.
Using this plugin requires Cordova iOS.
-
Make sure your Xcode project has been updated for Cordova
-
Rename the
ios
folder toFacebookConnect
, drag and drop it from Finder to your Plugins folder in XCode, using "Create groups for any added folders" -
Add the .js files to your
www
folder on disk, and add reference(s) to the .js files using<script>
tags in your html file(s)<script type="text/javascript" src="/js/plugins/FacebookConnect.js"></script>
-
Add new entry with key
FacebookConnect
and valueFacebookConnect
toPlugins
inCordova.plist/Cordova.plist
-
In the Build Settings tab, search for Other Linker Flags. Add the value
-lsqlite3.0
. -
In the Build Phases tab, link binary with libraries section. Add the Social.framework, Accounts.framework and AdSupport.framework frameworks. Make them optional to support pre-iOS6 devices.
-
Modify your application .plist according to the Facebook iOS : Getting started guide, check the
Modify the app property list file
section.
create an array key called URL types with a single array sub-item called URL Schemes. Give this a single item with your app ID prefixed with fb: ScreenShot. This is used to ensure the application will receive the callback URL of the web-based OAuth flow.
Using this plugin requires Cordova Android.
-
Add the cordova plugin (see Plugin Guide)
cordova plugin add https://github.com/mgcrea/cordova-facebook-connect
-
Add your Key Hashes (see Android Getting Started for more details).
// After device ready, create a local alias
var facebookConnect = window.plugins.facebookConnect;
facebookConnect.login({permissions: ["email", "user_about_me"], appId: "YOUR_APP_ID"}, function(result) {
console.log("FacebookConnect.login:" + JSON.stringify(result));
// Check for cancellation/error
if(result.cancelled || result.error) {
console.log("FacebookConnect.login:failedWithError:" + result.message);
return;
}
// Basic graph request example
facebookConnect.requestWithGraphPath("/me/friends", {limit: 100}, function(result) {
console.log("FacebookConnect.requestWithGraphPath:" + JSON.stringify(result));
});
// Feed dialog example
var dialogOptions = {
link: 'https://developers.facebook.com/docs/reference/dialogs/',
picture: 'http://fbrell.com/f8.jpg',
name: 'Facebook Dialogs',
caption: 'Reference Documentation',
description: 'Using Dialogs to interact with users.'
};
facebookConnect.dialog('feed', dialogOptions, function(response) {
console.log("FacebookConnect.dialog:" + JSON.stringify(response));
});
});
Copyright 2012 Olivier Louvignes. All rights reserved.
The MIT License
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
Contributors :
- Jon Buffington added dialog support for iOS.
Inspired by :
-
phonegap-plugin-facebook-connect built by Dave Johnson.