-(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!