I need to checkin on Facebook, without using the default checkin option that comes with Facebook iOS SDK, because I need to filter the Facebook places, so that user can only checkin using places I filtered. I have tried this using Facebook graph api.
NSDictionary *dict=[NSDictionary dictionaryWithObjectsAndKeys:accsstoken,@"access_token",@"253651184683030",@"place",@"I m here in this place",@"message",@"30.893075018178,75.821777459326",@"coordinates", nil];
[FBRequestConnection startWithGraphPath:@"/me/checkins"
parameters:dict
HTTPMethod:@"POST"
completionHandler:^(
FBRequestConnection *connection,
id result,
NSError *error
) {
NSLog(@"Error...%@",error);
}];
if anybody know about this, Do let me know ? Any kind of help will be appreciated.