Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Alright, I am having a devil of a time with getting some basic user info from the Facebook IOS SDK (3.1.1). Having done FB development with other platforms I am pretty convinced my issue has to do with the FB app's set up than with my code. BTW, I am in iTunes and have set an iTunes ID for iPhone. I have also carefully checked and quadruple checked the bundle ID in the App set up against my bundle ID.

Right now I can authenticate with a test user and get all the detail, etc. It works great. When I log in as a real user like myself (and I am a developer on the project) I get an Auth token, but calls to get the user fail, and I'm not sure what I have done wrong (if it works for a test user it should work for everyone).

All I need to get from the user, BTW is their First name, Last name, FB User ID, and email address (optional, but requested).

Currently after authenticating using the I'm using the games tutorial. Once I am logged in I do the following (although I have done a bunch of other things with the same result):

 - (void)fbDidLogin
 {
    // removed the setup for the class level Facebook var that I am currently not using

    // get information about the currently logged in user

    NSString *fql = @"select uid, first_name, last_name, email  from user where uid = me()";
    NSDictionary *queryParam = [NSDictionary dictionaryWithObjectsAndKeys:fql, @"q", nil];

    [FBRequestConnection startWithGraphPath:@"/fql"
                      parameters:queryParam
                      HTTPMethod: @"GET"
                      completionHandler:^(FBRequestConnection *connection,
                                          id result,
                                          NSError *error) {
                        [self meRequestResult:result WithError:error];
                      }];
 }

The meRequestResult routine starts like this:

- (void)meRequestResult:(id)result WithError:(NSError *)error
{
 if ([result isKindOfClass:[NSDictionary class]])
 {
    NSDictionary *dictionary;
    if([result objectForKey:@"data"])
        dictionary = (NSDictionary *)[(NSArray *)[result objectForKey:@"data"] objectAtIndex:0];
    else
        dictionary = (NSDictionary *)result;

    [fbUserData release];
    fbUserData = [dictionary retain];

    NSString *facebookId = [dictionary objectForKey:@"id"];
    if(!facebookId)
        facebookId = [dictionary objectForKey:@"uid"];
 // and more follows that is not pertinent

When I turn on request logging in the FB IOS SDK. I see the same things and can not find any description anywhere what these mean.

Here's the last 10 or so lines from the log:

 2012-12-03 11:52:12.394 mTender[6572:1cd03] Reachability Flag Status: -R -----l- networkStatusForFlags
 2012-12-03 11:52:12.395 mTender[6572:1cd03] The internet is working via WIFI.
 2012-12-03 11:52:12.396 mTender[6572:1cd03] Reachability Flag Status: -R ------- networkStatusForFlags
 2012-12-03 11:52:12.396 mTender[6572:1cd03] A gateway to the host server is working via WIFI.
 2012-12-03 11:52:35.093 mTender[6572:1cd03] FBSDKLog: Request <#1111>:
      URL:  https://graph.facebook.com//fql?sdk=ios&access_token=ACCESS_TOKEN_REMOVED&q=select%20uid%2C%20first_name%2C%20last_name%2C%20email%20%20from%20user%20where%20uid%20%3D%20me%28%29&migration_bundle=fbsdk%3A20121003&format=json
      Method:   GET
      UserAgent:    FBiOSSDK.3.1.1
      MIME: multipart/form-data; boundary=3i2ndDfv2rTHiSisAbouNdArYfORhtTPEefj3q2f

 2012-12-03 11:52:37.194 mTender[6572:1cd03] Error: HTTP status code: 500
 2012-12-03 11:52:37.196 mTender[6572:1cd03] FBSDKLog: Response <#1111> <Error>:
     The operation couldn’t be completed. (com.facebook.sdk error 5.)

Hopefully someone can figure this out. It's the last step of this project..

share|improve this question
Error: HTTP status code: 500 indicates a server error? How consistently does this happen? – James Webster Dec 3 '12 at 17:32
Every time I use a regular user with the app.. I see that exact sequence of things – DevTheo Dec 3 '12 at 19:29
Is the app authorized in settings > Facebook? – Peter Warbo Dec 3 '12 at 20:09
Could you be hitting the rate limit set by Facebook for requests? – David Thompson Dec 5 '12 at 13:07
@peter-warbo, Not sure what you mean. Where do you mean? If you are asking if the app is authorized by the user, it is. – DevTheo Dec 5 '12 at 15:12
show 6 more comments

3 Answers

I am doing something very similar to you. I am using facebook for login so that I don't have to worry about storing passwords and what not.

I followed this set of instructions.. The facebook site seems to be horrid the way its layed out with out of date stuff all over the place.

You can use native facebook or web based user authentication (the SDK will manage all that) so it will work on older versions of iOS and when not signed in to native facebook.

You will set a handler which will give you a "NSDictionary *user" with all the stuff that you need. No need to use the graph api on the iphone client.

share|improve this answer
I'll try this, but login seems to be fine.. btw, I've tried the normal request for "me" and that failed as well.. – DevTheo Dec 6 '12 at 13:12
Are you getting the access token back ok? – Andrew Dec 6 '12 at 13:28
Yes, access token is fine, so I highly doubt this is going to get me closer.. – DevTheo Dec 7 '12 at 20:32
So what is the problem.. do what I said and you will get everything. (First name, Last name, FB User ID, and email address) Just call [user objectForKey:@"email"]) when you have the user NSDictionary. Whats the problem.. its all been handed to you? – Andrew Dec 7 '12 at 20:40
I haven't had a chance to try this method, BUT when I was following the original tutorial when I went to pull "me" (3 different methods, one is with FQL, OpenGraph call for "me", and there is a FBRequestConnection mechanism for getting my data. None of which returned any info, but gave me an error that made no sense! Past experience says something is incorrect in my App setup on Facebook, but no amount of finagling has fixed it. – DevTheo Dec 10 '12 at 19:02
show 4 more comments

i think you have to see alternate way because the REST API has been deprecated. To make FQL queries you have to use the Graph API call.

 http://developers.facebook.com/docs/reference/rest/fql.query/
share|improve this answer
I won't deduct -1 you but honestly, what I am doing is the suggested path. The reference you point to says "To make FQL queries using the Graph API, check out the FQL documentation. You just issue an HTTP GET request to graph.facebook.com/fql?q= and provide your FQL statement as the value of the q parameter. You can use the Graph API Explorer to easily test FQL queries." This is EXACTLY what I am doing in the example code.. – DevTheo Dec 12 '12 at 14:46
up vote 0 down vote accepted

OK, I'm going to close this out.

I reverted to an SDK back in November of 2011. It didn't seem to be working at first, and then it just started working. I suspect a bug on Facebook's end was causing this. I haven't updated to the latest again to try, but this is my only guess as to what happened.

If you've done any lengthy Facebook development you know that sometimes their bugs really make things difficult. That said, no idea if this is the actual answer since I really didn't make any coding changes from the original code.

I know that I purposefully left the bundle ID out of the FB App Setup..

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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