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.

Does anyone know how I might go about sending a GET request to the Facebook Graph API which contains the user’s latitude and longitude.

this is for iOS

thanks for any help.

share|improve this question

1 Answer

up vote 6 down vote accepted

Do you mean getting Users Current location using Facebook Graph Api ?

Here is a Sample code which i borrowed from sample application provided by Facebook (Hackbook for ios) Link:https://github.com/facebook/facebook-ios-sdk/tree/master/sample/Hackbook

- (void)apiGraphSearchPlace:(CLLocation *)location {

    currentAPICall = kAPIGraphSearchPlace;
    NSString *centerLocation = [[NSString alloc] initWithFormat:@"%f,%f",
                                location.coordinate.latitude,
                                location.coordinate.longitude];
    HackbookAppDelegate *delegate = (HackbookAppDelegate *)[[UIApplication sharedApplication] delegate];
    NSMutableDictionary *params = [NSMutableDictionary dictionaryWithObjectsAndKeys:
                                   @"place",  @"type",
                                   centerLocation, @"center",
                                   @"1000",  @"distance",
                                   nil];
    [centerLocation release];
    [[delegate facebook] requestWithGraphPath:@"search" andParams:params andDelegate:self];
}
share|improve this answer
thanks! I've been trying to use that but have run into problems integrating it into my app. – hanumanDev Apr 18 '12 at 10:33

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.