Click here to Skip to main content
Click here to Skip to main content

Using Facebook login in ASP.NET application without any third party library.

By , 31 Aug 2012
 

Editorial Note

This article appears in the Third Party Product Reviews section. Articles in this section are for the members only and must not be used by tool vendors to promote or advertise products in any way, shape or form. Please report any spam or advertising.

Facebook is extremely popular these days and you will hardly find anyone without Facebook profile, more and more people now want there site to use Facebook authentication in their application, instead of using their own user database to maintain user credentials. In this article I will give you step by step demo on how to integrate Facebook login into you screen.

Step-1: Register site in Facebook:

In order to use Facebook login, you should must have a verified developer account in Facebook (which is very easy to create just login to http://developers.facebook.com using your Facebook credentials and follow the screen instructions) and you must register you website in the form of an App in Facebook.

So lets start with registering your site with Facebook:

  1. Open http://developers.facebook.com and login with your Facebook credentials after logging in you will get a screen like this:

  1. Click on "Build for Websites" link, you will reach to https://developers.facebook.com/docs/guides/web/ , just click on 'Apps' menu Items (the last menu Item from right side), you will reach to https://developers.facebook.com/apps. Click on button, you will get following screen.

  2. Enter the name of your website in place of App Name, rest of the fields are optional so fill them if you require to use them and click on 'Continue' button. you will be asked to fill a captcha screen and then you will get the summary screen like below screenshot (Just masked the AppID).

  3. Give the URL of you website/ application Site URL text box of the app summery screen, like below screenshot. I have given localhost address as I will be testing the app from my local build, you will have to give your website URL in this.

Now you are ready to create ASP.Net Web Application, to use Facebook integration. Step-2: Create ASP.NET application using Facebook login:

  1. Open Visual Studio.
  2. Select File --> New --> Project/Solution --> 'ASP.NET Empty Application'
  3. Now Right Click on Project Name Select Add--> New Item from the pop-up menu and click on 'Web Form' to add Default.Aspx page. (See screenshot).

  4. Most of the code we will be doing on the HTML code of ASP.NET Page.
  5. For using Facebook login, we will have to use Facebook JavaScript SDK. There are three ways of using it:
    1. Load the JavaScript SDK asynchronously.
             <script>
                // Load the SDK Asynchronously
                (function (d) {
                    var js, id = 'facebook-jssdk', ref = d.getElementsByTagName('script')[0];
                    if (d.getElementById(id)) { return; }
                    js = d.createElement('script'); js.id = id; js.async = true;
                    js.src = "//connect.facebook.net/en_US/all.js#xfbml=1";
                    ref.parentNode.insertBefore(js, ref);
                } (document));
            </script>
    2. Load the JavaScript SDK synchronously
      <script src=https://connect.facebook.net/en_US/all.js type="text/javascript"></script>
    3. Download the SDK JavaScript file in your local project folder and use it from there. Implemented in 'Default.aspx' of solution.
      <script src="scripts/all.js" type="text/javascript"></script>
  6. We will also require jquery for initializing the library. so copy following code in header section of the page.
    <script
    src="scripts/jquery-1.8.0.min.js"
    type="text/javascript"></script> <script
    src="scripts/all.js"
    type="text/javascript"></script> 7) Now to initialize the Facebook SDK copy following code in a new script section :
             $("document").ready(function () {
                // Initialize the SDK upon load
                FB.init({
                    appId: 'YOUR_APP_ID', // App ID
                    channelUrl: '//' + window.location.hostname + '/channel', // Path to your Channel File
                    scope: 'id,name,gender,user_birthday,email', // This to get the user details back from Facebook
                    status: true, // check login status
                    cookie: true, // enable cookies to allow the server to access the session
                    xfbml: true  // parse XFBML
                });
                // listen for and handle auth.statusChange events
                FB.Event.subscribe('auth.statusChange', OnLogin);
            });

    Here YOUR_APP_ID will be the App Id you will get from the Facebook App.

  7. Also copy the following code after Above code in to get the response back and fill the values.
            // This method will be called after the user login into facebook.
            function OnLogin(response) {
                if (response.authResponse) {
                    FB.api('/me?fields=id,name,gender,email,birthday', LoadValues);                    
                }
            }
    
            //This method will load the values to the labels
            function LoadValues (me) {
                if (me.name) {
                    document.getElementById('displayname').innerHTML = me.name;
                    document.getElementById('FBId').innerHTML = me.id;
                    document.getElementById('DisplayEmail').innerHTML = me.email;
                    document.getElementById('Gender').innerHTML = me.gender;
                    document.getElementById('DOB').innerHTML = me.birthday;
                    document.getElementById('auth-loggedin').style.display = 'block';
                                }
            }
  8. Copy following code in the Body tag of the Page.
        <div id="fb-root"></div> <!-- This initializes the FB controls-->   
        <div class="fb-login-button" autologoutlink="true" scope="user_birthday,email" >
          Login with Facebook
         </div> <!-- FB Login Button -->   
        <!-- Details --> 
        <div id="auth-status">    
        <div id="auth-loggedin" style="display: none">
            Hi, <span id="displayname"></span><br/>
            Your Facebook ID : <span id="FBId"></span><br/>
            Your Email : <span id="DisplayEmail"></span><br/>
            Your Sex:, <span id="Gender"></span><br/>
            Your Date of Birth :, <span id="DOB"></span><br/>        
        </div>
        </div>
  9. Your application is ready now, execute the application.

In this blog we have learned how to register an application in Facebook and the use that application for Facebook authentication in our ASP.NET website/application. Using this the user of your web site/application will be free from the hassle of registering and entering their details again if they have Facebook Id they can use that to login.

Reference Links

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)

About the Author

S Ravi Kumar-2012
Architect
India India
Member
No Biography provided

Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
Hint: For improved responsiveness ensure Javascript is enabled and choose 'Normal' from the Layout dropdown and hit 'Update'.
You must Sign In to use this message board.
Search this forum  
    Spacing  Noise  Layout  Per page   
QuestionMy vote of 5 [modified]memberKevinJeremy15 May '13 - 1:41 
Questionget city and countrymembershanalikhan10 Mar '13 - 11:43 
AnswerRe: get city and countrymemberS Ravi Kumar-201211 Mar '13 - 2:06 
Questionunable to see informationmembershanalikhan10 Mar '13 - 2:04 
AnswerRe: unable to see informationmemberS Ravi Kumar-201210 Mar '13 - 6:17 
GeneralRe: unable to see informationmembershanalikhan10 Mar '13 - 8:26 
GeneralRe: unable to see informationmemberS Ravi Kumar-201210 Mar '13 - 8:31 
GeneralRe: unable to see informationmembershanalikhan10 Mar '13 - 8:40 
QuestionAwful tutorial and misleading titlememberd-signet228 Feb '13 - 9:35 
GeneralRe: Awful tutorial and misleading titlemembermafnx14 Mar '13 - 5:24 
QuestionCan I do the same concept for my Windows Application?memberGaneshcse13 Feb '13 - 7:03 
QuestionIs there any security threat for my applicationmemberSumanBiswas24 Jan '13 - 10:23 
Suggestionadditional helpmemberroger_276 Jan '13 - 6:24 
GeneralRe: additional helpmemberGianluca SamBuca Di Pietro5 Feb '13 - 8:56 
GeneralRe: additional helpmemberroger_276 Feb '13 - 3:28 
GeneralRe: additional helpmemberGianluca SamBuca Di Pietro8 Feb '13 - 0:03 
GeneralRe: additional helpmemberroger_2710 Feb '13 - 11:58 
GeneralMy vote of 5memberRafael Nicoletti20 Dec '12 - 6:18 
Questionlogin with facebook problemmemberhasanbudak24 Nov '12 - 6:57 
AnswerRe: login with facebook problemmemberS Ravi Kumar-20123 Jan '13 - 19:55 
QuestionFb.Event.Subscribemembersafiyullah4 Sep '12 - 20:48 
AnswerRe: Fb.Event.SubscribememberS Ravi Kumar-20125 Sep '12 - 2:29 
GeneralRe: Fb.Event.Subscribemembersafiyullah5 Sep '12 - 18:39 
GeneralRe: Fb.Event.SubscribememberS Ravi Kumar-20126 Sep '12 - 15:43 
GeneralRe: Fb.Event.Subscribemembersafiyullah6 Sep '12 - 18:46 
GeneralRe: Fb.Event.Subscribemembersafiyullah17 Sep '12 - 18:41 
GeneralRe: Fb.Event.SubscribememberS Ravi Kumar-201219 Sep '12 - 19:08 
GeneralRe: Fb.Event.Subscribemembersafiyullah20 Sep '12 - 3:44 
GeneralRe: Fb.Event.SubscribememberS Ravi Kumar-201214 Nov '12 - 23:20 
AnswerRe: Fb.Event.SubscribememberDanko Greiner23 Jan '13 - 22:33 
GeneralRe: Fb.Event.SubscribememberS Ravi Kumar-201210 Mar '13 - 8:20 
QuestionMy vote of 3 (almost 4)memberRafael Nicoletti2 Sep '12 - 15:28 
AnswerRe: My vote of 3 (almost 4)memberS Ravi Kumar-20122 Sep '12 - 18:20 
GeneralMy vote of 4memberPrabhakaran Soundarapandian31 Aug '12 - 6:53 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

Permalink | Advertise | Privacy | Mobile
Web01 | 2.6.130516.1 | Last Updated 31 Aug 2012
Article Copyright 2012 by S Ravi Kumar-2012
Everything else Copyright © CodeProject, 1999-2013
Terms of Use
Layout: fixed | fluid