Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.
-(void)extendAccessTokenStepOneOnCompletion:(FacebookEngineCompletionWithToken)completion onError:(FacebookEngineErrors)ErrorBlock{
    /*
     https://graph.facebook.com/oauth/access_token?
     client_id=APP_ID&
     client_secret=APP_SECRET&
     grant_type=fb_exchange_token&
     fb_exchange_token=EXISTING_ACCESS_TOKEN
     */

    NSMutableDictionary * parametersForExtendToken = [NSMutableDictionary dictionaryWithObjectsAndKeys:
                                                      kAppId,@"client_id",
                                                      @"KEY?WHICH KEY?",@"client_secret",
                                                      @"fb_exchange_token",@"grant_type",
                                                      [[User sharedInstance] fb_AccessToken],@"fb_exchange_token",
                                                      nil];
    FBRequest * operation = [[FBRequest alloc] initWithSession:[self facebookSession]
                                                     graphPath:[NSString stringWithFormat:@"%@/%@/%@",FBGraphPath,@"oath",@"access_token"]
                                                    parameters:parametersForExtendToken
                                                    HTTPMethod:@"POST"];

/*get short live token and after repeat function to get long-live token*/
    /*...*/
}

But i read on manual page, that in new sdk facebook don't need kAppSecret, so, i can't understand, what should i do.

So, i have two alternatives:
1. Get newest version of facebook-ios-sdk
2. Write my own method with unknown parameter client_secret

First alternative have one trouble: does this newest version of sdk extend token automatically? Second alternative have one trouble too: does i need client_secret to get refresh token or this method oath/access_token have an optional parameter client_secret?

Thanks for help!

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.