I'm developing iPhone application, that is based on communication with server, and I want to use Facebook authentication mechanisms.

Basically, I think it should work like this:

  1. In my iPhone app, user logs in to Facebook, using his email and password.
  2. User allows access to his data for related Facebook application.
  3. My iPhone app receives access token, after successful log in.
  4. In further communication with my server, my iPhone application should using received Facebook access token (for example: in queries).
  5. When my server receives some query from iPhone app, with access token, it should ask Facebook that this token is valid (and for who), and if yes, server should assume that user is authenticated with Facebook.

My question is: how the server should ask Facebook if given access token is valid? I think I should somehow check if the token is valid for my Facebook app.

I've tried many Facebook queries to graph API, that I've found, but nothing worked as I expected. Can you provide me some example?

link|improve this question

29% accept rate
3  
Unless the user has logged out of the app in FB, you can just send the auth token across to the server (ssl hopefuly). Does a simple query of "/me" via the graph api succeed or fail? – The Mad Gamer Mar 30 '11 at 23:12
you will get message in response from facebook that your token is not valid :) – tzu.rahul Jul 11 '11 at 9:34
I'm trying to do something very similar to what you're doing. You never marked this question as answered, did you ever get this working? – tempy Nov 22 '11 at 10:50
feedback

3 Answers

I assume that you already have the access token in hand. In such a case the simplest way to validate an access token is to issue the following request

https://graph.facebook.com/me?fields=id&access_token=@accesstoken

Here replace @accesstoken with the access token you have. I will breakdown the url and will explain each.

We are issuing a graph api request here which will return the Facebook User Id of the owner of the access token as a JSON string. The keyword 'me' represents the currently logged in user or the owner of the access token. For this request access token is a mandatory parameter.

If the provided access token is not valid or expired Facebook will just return an error message of some sort.

For a valid access token the result will somehow look like this

{
   "id": "ID_VALUE"
}
link|improve this answer
Wouldn't that request succeed if that user provided an access_token which belongs to a different app? – Yuriy Nemtsov Nov 11 '11 at 19:39
Any valid user access token can be used (no matter which app it belongs to) – Robin Jome Nov 12 '11 at 4:19
2  
Hi. Since the original poster did not mark this as the solution, I'm just going to go ahead and state this in the comments. This post is the solution to the problem. – Xiquid Dec 20 '11 at 21:37
feedback

Using Facebook Connect (the API provided by FaceBook -- there are many tutorials online), you ask to post, for example, a dialog, and FBConnect takes care of asking the user for their account & password, getting the token, etc. Your code never needs to deal with any of that.

Here's some sample from a recent project:

NSString *description = @"This is the description of my cool app that runs "
                        @"on your iPhone or iPod-touch!"
                        ;

// Thanks to
//  http://www.mobisoftinfotech.com/blog/iphone/iphone-fbconnect-facebook-connect-tutorial/
//  for this little fix.
NSString* propString = @"{\"Download it free: \":{\"href\":\"http://bit.ly/whatever\",\"text\":\"On iTunes AppStore\"}}";
// post FB dialog
NSMutableDictionary *params = [NSMutableDictionary dictionaryWithObjectsAndKeys:
//      @"This is what I say about MyApp:", @"message",                     // user msg
        nameTitle, @"name",                                                 // blue/bold name/title
        @"http://bit.ly/whatever", @"link",                                 // Link for the name/title.
        @" ", @"caption",                                                   // 1st line
        description, @"description",                                        // 2nd line
        @"http://url/to/your/picture.jpg", @"picture",                      // this is the image, not the Flicker page
        propString, @"properties",
        nil];

[facebook dialog: @"feed"                    // This is where all the "magic" happens
            andParams: params
            andDelegate: self];

As a delegate, you have to implement a few routines, but they're all very simple and well documented in FBConnect.

If you get this much done, and run into trouble, try asking a more specific question about the problem area.

link|improve this answer
feedback

Along with an access token Facebook also sends an "expires_in" parameter, which is an offset value. Use that to compute for when the access token will expire as an NSDate. Then when you need to do a request compare the current date with the expiration date.

Also try to inspect the status codes and response strings Facebook sends back.

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.