I've downloaded the C# Facebook SDK "Simple MVC Website Example" from CodePlex at:

http://facebooksdk.codeplex.com/releases/view/54371

and have successfully got it to authenticate to my test Facebook app. But I can't quite work out how to get the access token (and I'm going to want offline access, so I only need to grab that token once, when the user first authorizes my app to grab their feed data).

Many thanks

link|improve this question
Did you get this resolved? I added the javascript FB.getLoginStatus which results in the user is logged in. But in c# using the sdk the app.Session is always null. – Danny Nov 21 '10 at 20:00
I did get it resolved, please see Nathan's advice. Maybe some issue with your app ID? – Dave B Nov 22 '10 at 9:51
1  
Don't forget to mark the question as accepted – Carlos Muñoz Nov 24 '10 at 6:37
feedback

2 Answers

You will want to do two things. First, to request offline_access, you need to change the Javascript login function to request offline access as follows. This is in the Views/Home/Index.aspx.

    <div id="fb-root"></div>
    <script src="http://connect.facebook.net/en_US/all.js"></script>
    <script>
        FB.init({ appId: '<%:FacebookSettings.Current.AppId %>', status: true, cookie: true, xfbml: true });
        $('#fbLogin').click(function() {
            FB.login(function (response) {
                if (response.session) {
                    window.location = '<%:Url.Action("Profile") %>'
                } else {
                    // user cancelled login
                }
            }, { perms: 'offline_access' });
        });
    </script>
</asp:Content>    

Next, to get the access token, you just do the following in action after the user is authenticated:

    public ActionResult Profile()
    {
        var app = new FacebookApp();
        if (app.Session == null)
        {
            // The user isnt logged in to Facebook
            // send them to the home page
            return RedirectToAction("Index");
        }
    // Read current access token:
        var accessToken = app.Session.AccessToken;

        // Get the user info from the Graph API
        dynamic me = app.Api("/me");
        ViewData["FirstName"] = me.first_name;
        ViewData["LastName"] = me.last_name;

        return View();
    }
link|improve this answer
Nathan, many thanks. Works perfectly. Incidentally, for additional permissions one would add them as a comma-delimited list e.g.: – Dave B Nov 22 '10 at 9:45
<div id="fb-root"></div> <script src="connect.facebook.net/en_US/all.js"></script>; <script> FB.init({ appId: '<%:FacebookSettings.Current.AppId %>', status: true, cookie: true, xfbml: true }); $('#fbLogin').click(function () { FB.login(function (response) { if (response.session) { window.location = '<%:Url.Action("Profile") %>' } else { // user cancelled login } }, { perms: 'offline_access,read_stream' }); }); </script> – Dave B Nov 22 '10 at 9:45
feedback

My recommendation is that you work with the new graph api instead, you can get it here

http://github.com/facebook/csharp-sdk

here's a description on how you fetch the authentication token:

http://developers.facebook.com/docs/authentication/

link|improve this answer
2  
The Facebook C# SDK that he is talking about does use the Graph API. – Nathan Totten Nov 19 '10 at 22:43
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.