Trying to implement Facebook iOS SDK on my iphone App. I am using FBDialog Delegate to allow the user to login and get the response/callback using the delegate.
I would like to grab the code in response_type from the user once the login is successful. Can anyone help me out here or let me know where to take the guide from.
I have the following code which is implemented :
-(void) login{
self.fb = [[Facebook alloc] initWithAppId:AppID andDelegate:self];
NSUserDefaults *defaults = [NSUserDefaults standardUserDefaults];
if ([defaults objectForKey:@"FBAccessTokenKey"]
&& [defaults objectForKey:@"FBExpirationDateKey"]) {
self.fb.accessToken = [defaults objectForKey:@"FBAccessTokenKey"];
self.fb.expirationDate = [defaults objectForKey:@"FBExpirationDateKey"];
}
fb.sessionDelegate = self;
NSMutableDictionary *params = [NSMutableDictionary dictionary];
[params setObject:AppID forKey:@"client_id"];
[params setObject:@"code" forKey:@"response_type"];
[fb dialog:@"oauth" andParams:params andDelegate:self];
NSLog(@"Callback: %@", params);
}