Lately I have been spending time researching on how to integrate with facebook connect. There is a ton of documentation on the facebook wiki page, but as with any wiki you need to know what you are looking for. I am going to document here what I found.
For the really impatient (like me) check out this video.
- To begin with go to this Wiki page on facebook to get familiar with facebook connect and reasons for using it.
- Install the facebook developer app into your facebook page (makes it easy to keep track of your api keys and your webpages ).
- Next on the facebook developer app register your domain and it will generateĀ the api key and secret (don’t worry about saving it you can always look it up from the developer app).
- Once you have done that you will need to download and place this file xd_receiver.htm into your applications root folder. (For step by step instructions to do this go here.)
- Include this tag in every page that you plan to use facebook connect on.
<script src="http://static.ak.connect.facebook.com/js/api_lib/v0.4/FeatureLoader.js.php/en_US" type="text/javascript"></script>
- And also include this snippet to initiate the connection.
FB.init("your key", "/xd_receiver.htm")
Should be in the body not head
- Place the login button
fb:login-button length=’long’ onlogin="successful_login();" - You need to create the function successful_login, that will do something when facebook authenticates the user. I just went and pulled the user’s picture and show it. The code for that is here
$("#login").html("<fb:profile-pic uid='loggedinuser' facebook-logo='true' > </fb:profile-pic>. Welcome, <fb:name uid='loggedinuser' useyou='false'></fb:name >.");
And that’s about it, if you want you can check out my example at devender.net