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.

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);
}
share|improve this question

2 Answers

In didReceiveResponse, the delegate method called when response is beginning (not yet complete and parsed), get the statusCode from the response object.

- (void)request:(FBRequest *)request didReceiveResponse:(NSURLResponse *)response {
    if (200 == [response statusCode]) {
        NSLog(@"Success");
    }    
}  
share|improve this answer

Just handle the delegate methods:

/**
 * Your application should implement this delegate to receive session callbacks.
 */
@protocol FBSessionDelegate <NSObject>

@optional

/**
 * Called when the user successfully logged in.
 */
- (void)fbDidLogin;

/**
 * Called when the user dismissed the dialog without logging in.
 */
- (void)fbDidNotLogin:(BOOL)cancelled;

/**
 * Called when the user logged out.
 */
- (void)fbDidLogout;

@end
share|improve this answer
But I am looking to retrieve specific return data like code and error from facebook session delegate like here : developers.facebook.com/docs/reference/dialogs/oauth in the return data sections. How can I achieve it ? – Change Mar 2 '12 at 16:53

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.