• We Code
  • We Design
  • We Develope
  • We Write
  • We Share

menu

Monday, January 27, 2014

FaceBook Login Logout using cordova 3.3.0 cli.



In recent past i faced a lot problem in setting up the cordova facebook plugin with cli 3.3.0.After a lot of search i found it is typo from cordova.I am here sharing the easiest steps to setting up cordova facenook plugin using cordova cli 3.3.0 .

How to set up the Facebook plugin With cordova 3.3.0 cli for android ?
before Setting Facebook plugin with cordova 3.3.0 you have to setup these
Prerequisite :
  1. JdK
  2. Apache Ant
  3. Node.js and NPM
  4. Git
  5. Cordova 3.3.0 CLI


Once you installed all the above properly.Open your command prompt and go to your project directory and run this command




you will see the  screen like above after running the command . You have created a cordova project.Change your directory to facebookTutorial 

Now you are inside cordova project which you just created .Run the below command.



>

Now you installed facebook plugin in your cordova project. But if you will run the command  cordova plateform add android it will get failed and ask you to putt appid and appname.
For removing this error locate the folder \plugins\com.phonegap.plugins.facebookconnect inside your projectfolder.
Open The plugin.xml file from \plugins\com.phonegap.plugins.facebookconnect folder and find the lines




Modify it to


Where value is your app id and your app name.
 Run the command cordova platform add android . The screen similar to below will appear.
 Now you have installed facebook plugin and created android project.
Now we will see how to get login to facebook through cordova facebook plugin ?
 Now open the index.html file from your projectfolder/www in your favorite editor. And delete everything from this .
 You have a Blank index.html file.Write some dom elements inside your body Tag 



Your Dom structure is ready . Now Make reference of cordova.js ,cdv-plugin-fb-connect.js and facebook-js-sdk.js



Now come to your <script></script> portion and check the cordova facebook and cdv agent are included properly inside your project




Write  event handler function for login logout and status change.


Its time to initialize FB sdk now. Here i am initializing it with device ready event


Once the fb is initialize we can  make login to facebook through our application.Here the function for log in

For the Logging out

For getting the login status here is the code snipet






Once all this done run the command 



Your Application will be launch in your emulator.Here are few screenshots of emulator.


















Hope you enjoyed reading this.If any doubt i am open to answer .Feel free to ask and do't forget to share with your friends

0 comments:

Post a Comment

...