Interesting/TIPTECH
Facebook for PhoneGap on Android
duraboys
2011. 9. 1. 12:01
https://github.com/jos3000/phonegap-plugins/tree/master/Android/Facebook
Android/Facebook/README.md
Android/Facebook/README.md
Facebook for PhoneGap on Android
by Jos Shepherd
This is a PhoneGap plugin based on the Facebook Android SDK: https://github.com/facebook/facebook-android-sdk
Basic calls to the authorize and graph API are supported - more to come.
Example use:
appId = 123123123 // this is your facebook app id
window.plugins.facebook.authorize(appId ,function(res){
alert(res.name); // the authorized users name
window.plugins.facebook.request("me/likes" ,function(res){
alert(res.data[0].name); // the name of the first 'liked' item
});
});