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
});
});
'Interesting > TIPTECH' 카테고리의 다른 글
phonegap start android (0) | 2011.09.03 |
---|---|
phonegap-system-notification-plugin (0) | 2011.09.02 |
PhoneGap - Andorid 관련 1차 자료 (데이터 수집 및 업데이트중) (0) | 2011.08.31 |
안드로이드 시간 동기화 문제 (2) | 2011.08.26 |
페이스북 관련 참고 자료 (0) | 2011.08.20 |