Get my friends registration details from facebook api

Is there any way to get my friends registration using facebook api? I am going to develop an iphone application and I need latitude and longitude.

+6
source share
2 answers

Yes, it is quite easy to implement using Facebook. Check the Checkin api documentation, which will give you the places to which the user and their friends have registered, including latitude and longitude. You just need to request the user to allow user_checkins. This can also be requested using the FQL language, see the checkin table. The latest Facebook iOS SDK and sample will help you get started quickly with the Graph API.

+2
source

Hii,

yes you can get your friends checks

-(void)getRecentCheckins { NSMutableDictionary *params = [NSMutableDictionary dictionaryWithObjectsAndKeys: @"checkin",@"type",nil]; [facebook requestWithGraphPath:@"search" andParams: params andDelegate:self]; } 

this will give a list of recent checks made by your friends for the doload method.

Hope this helps - use this link for guidance:

http://tylerwhitedesign.com/how-to-check-in-using-the-facebook-ios-sdk-and-graph-api

+1
source

Source: https://habr.com/ru/post/888951/


All Articles