我正在使用google api在我的应用程序中执行google lattitude操作。我已经完成,直到使用凭据来自动化用户。现在我正在尝试使用从初始请求生成的autherization_code生成accesstoken。但是它将didReceiveData函数中的invalid_request作为错误。请你们中的一些人建议我解决我的问题。 Oauth请求格式如下所示。
POST /o/oauth2/token HTTP/1.1
Host: accounts.google.com
Content-Type: application/x-www-form-urlencoded
code=4/v6xr77ewYqhvHSyW6UJ1w7jKwAzu&
client_id=8819981768.apps.googleusercontent.com&
client_secret={client_secret}&
redirect_uri=https://oauth2-login-demo.appspot.com/code&
grant_type=authorization_code
我的ios代码执行上述服务calll如下
NSString * urlString = [NSString stringWithFormat:@"https://accounts.google.com/o/oauth2/token?code=%@&client_id=363756608022.apps.googleusercontent.com&client_secret=dury2bxloSVQ1sdJjg9MKO9s&redirect_uri=urn:ietf:wg:oauth:2.0:oob&grant_type=authorization_code",[userDefaults valueForKey:@"accessTokenResponse"]];
NSURL * url = [NSURL URLWithString:urlString];
NSMutableURLRequest * request = [[NSMutableURLRequest alloc] initWithURL:url];
[request addValue:@"application/x-www-form-urlencoded" forHTTPHeaderField:@"Content-Type"];
[request setHTTPMethod:@"POST"];
NSLog(@"sendng req : %@",request);
NSURLConnection * connection = [[NSURLConnection alloc]initWithRequest:request delegate:self];
[connection start];
答案 0 :(得分:0)
使用asihttpheader来形成标头请求。 [request setpostvalue" forkey :].
这解决了我的问题