I'd like to be able to authenticate myself (my profile, not just my app) on my own web application using the Facebook C# SDK. Using the Graph API, I can get an access token, but that token does not seem to work properly with the Facebook C# as it seems to be stateless.

The error that is thrown is:

(OAuthException) An active access token must be used to query information about the current user.

I've poked around the Facebook C# SDK and documentation and most of the info I'm seeing is to redirect users to a login page which is not what I'm looking for.

Does anyone have a good sample of auto-logging in myself so I can pull up my own information?

TIA

link|improve this question

Could you provide some information on what you are trying to do? Are you trying to post to your wall, get your status, or what? That will help us out a lot. Depending on what you are doing you will need an app that has been given the necessary permissions which will result in an access token. What kind of app are we talking about here? Web App? Windows Forms? WPF? Silverlight? Phone? All of this will help us get you an answer.. – DevTheo Mar 3 '11 at 13:24
I'm using a web app and I'm trying to grab all of the latest photos for my account. I've tried the Graph API as well as the Facebook C# SDK. The SDK appears to be just a wrapper. – Jason N. Gaylord Mar 3 '11 at 14:12
I am having problems with grabbing the images as well. link – Jason N. Gaylord Mar 3 '11 at 14:12
feedback

3 Answers

up vote 5 down vote accepted

When you say "yourself" do you mean the app or your actual facebook user?

If it's just your app, you can get an access token by POSTing to this URL:

https://graph.facebook.com/oauth/access_token?grant_type=client_credentials&client_id=APP_ID_HERE&client_secret=APP_SECRET_HERE

You can use this access token to perform actions on behalf of your users if they have authorized your app to do so.

link|improve this answer
Just updated my question. I know I can call out to the Graph API, but each time I do that, it says that I don't have the proper credentials. I'll try specifying the grant_type as I have not up to this point. I am looking for my profile and not just my app. – Jason N. Gaylord Mar 2 '11 at 21:16
Actually, I did try adding in that grant_type. – Jason N. Gaylord Mar 2 '11 at 21:18
I don't know what that error is being caused by. The above POST should work for your app (at least to get the access token). Make sure you are using contenttype = "application/x-www-form-urlencoded" I suggest doing the API stuff by hand. I've not found a good C# facebook library that has kept up with the API changes. – Max Mar 2 '11 at 21:29
I've updated the question again with the specific OAuth error. I get an auth token back, but it doesn't seem to work with subsequent requests. – Jason N. Gaylord Mar 2 '11 at 21:35
So I got it working to connect using graph.facebook.com/oauth/access_token?client_id={app_id}&client_secret={‌​app_secret}&grant_type=client_credentials&scope=user_photos,offline_access"; – Jason N. Gaylord Mar 3 '11 at 0:31
show 4 more comments
feedback

I had the same problem where the access token didn't include the session part. Please check out my answer to this similar question - exchange code for token facebook-c#-sdk.

Here's a sample from my Home controller

[CanvasAuthorize]
public ActionResult Index()
{
    var app = new FacebookClient(new Authorizer().Session.AccessToken);

    dynamic me = app.Get("me");
    ViewBag.Firstname = me.first_name;
    ViewBag.Lastname = me.last_name;

    return View();
}

Edit

Now I understand the question better. What about this?

var auth = new Authorizer(FacebookContext.Current.AppId, FacebookContext.Current.AppSecret, HttpContext);

auth.Authorize();

From the documentation:

public bool Authorize() Member of Facebook.Web.Authorizer

Summary: Authorizes the user if the user is not logged in or the application does not have all the sepcified permissions.

Returns: Return true if the user is authenticated and the application has all the specified permissions.

link|improve this answer
Please add comment when down-voting. – Jimmy Mar 2 '11 at 21:18
Doesn't that still require that I login? I want to login from code. – Jason N. Gaylord Mar 2 '11 at 21:19
(and I'm not sure who down-voted it, but it wasn't me.) – Jason N. Gaylord Mar 2 '11 at 21:20
So if I try that, I get an exception thrown: – Jason N. Gaylord Mar 2 '11 at 21:42
Locating source for 'd:\Projects\facebooksdk\Source\Facebook.Web\Authorizer.cs'. (No checksum.) The file 'd:\Projects\facebooksdk\Source\Facebook.Web\Authorizer.cs' does not exist. Looking in script documents for 'd:\Projects\facebooksdk\Source\Facebook.Web\Authorizer.cs'... Looking in the projects for 'd:\Projects\facebooksdk\Source\Facebook.Web\Authorizer.cs'. The file was not found in a project. Looking in directory 'c:\Program Files\Microsoft Visual Studio 10.0\VC\crt\src\'... Looking in directory 'c:\Program Files\Microsoft Visual Studio 10.0\VC\atlmfc\src\mfc\'... – Jason N. Gaylord Mar 2 '11 at 21:43
show 8 more comments
feedback

I dont know if this will work for you:

using Facebook.Web;
using Facebook;
using System.Dynamic;

var auth = new CanvasAuthorizer { Permissions = new[] { "user_about_me"} };

if (auth.Authorize())
{
}

and include this in the aspx:

<input type="hidden" name="signed_request" value="<%: Request.Params["signed_request"]%>"/>

good luck !!

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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