我需要在我的应用程序中显示Garmin健康数据。 Garmin文档要求开发人员通过与应用程序和garmin帐户的oauth 1.0连接来实现连接。因此,当我在https://connectapi.garmin.com/oauth-service/oauth/request_token上应用GET / PUSH请求时?网址,则显示以下错误。幸运的是,我在邮递员中得到了适当的答复。
第1步:
邮递员请求:
https://connectapi.garmin.com/oauth-service/oauth/request_token?oauth_consumer_key=3f58949f-e54d-4211-a735-e52cc0ab8f4d&oauth_signature_method=HMAC-SHA1&oauth_timestamp=1531983278&oauth_nonce=cW1Xhs&oauth_version=1.0&oauth_signature=WveKS0cnl7w4ZNknL0WD4f7wBFU=
响应:
oauth_token=48d03142-ffe3-4adc-ae0e-6c3d7bdd1e18&oauth_token_secret=EY67QDeBqHNvCzlCt0HU5yQ1LkVkGOMK0b4
在我的代码中,我同时应用了GET / POST请求,它显示以下错误:
Garmin Connect API服务器-错误报告
HTTP状态400-OAuth使用方凭据不足。
类型状态报告
消息 OAuth使用者凭据不足。
描述客户端发送的请求在语法上是不正确的。
Garmin Connect API服务器< / h3>
我的代码就像:
NSError *error;
NSString *urlString = @"https://connectapi.garmin.com/oauth-service/oauth/request_token?";
NSURL *url = [NSURL URLWithString:urlString];
NSMutableURLRequest *request = [[NSMutableURLRequest alloc] init];
NSString * parameterString = [NSString stringWithFormat:@"oauth_consumer_key=3f58949f-e54d-4211-a735-e52cc0ab8f4d&oauth_signature_method=HMAC-SHA1&oauth_timestamp=1531983278&oauth_nonce=cW1Xhs&oauth_version=1.0&oauth_signature=pfZzKhniC9zCFZdIx8d0gyIsw3Y"];
//3f58949f-e54d-4211-a735-e52cc0ab8f4d
// NSLog(@"%@",parameterString);
[request setHTTPMethod:@"GET"];
[request setURL:url];
[request addValue:@"application/json" forHTTPHeaderField:@"Content-Type"];
//Even i apply push and set this data, nothing works!
// [request addValue:@"3f58949f-e54d-4211-a735-e52cc0ab8f4d" forHTTPHeaderField:@"oauth_consumer_key"];
// [request addValue:@"HMAC-SHA1" forHTTPHeaderField:@"oauth_signature_method"];
// [request addValue:@"1531983278" forHTTPHeaderField:@"oauth_timestamp"];
// [request addValue:@"cW1Xhs" forHTTPHeaderField:@"oauth_nonce"];
// [request addValue:@"1.0" forHTTPHeaderField:@"oauth_version"];
// [request addValue:@"pfZzKhniC9zCFZdIx8d0gyIsw3Y" forHTTPHeaderField:@"oauth_signature"];
// [request addValue:@"" forHTTPHeaderField:@"oauth_consumer_key"];
NSData *postData = [parameterString dataUsingEncoding:NSUTF8StringEncoding];
[request setHTTPBody:postData];
NSData *finalDataToDisplay = [NSURLConnection sendSynchronousRequest:request returningResponse:nil error:&error];
NSMutableDictionary *abc = [NSJSONSerialization JSONObjectWithData: finalDataToDisplay
options: NSJSONReadingMutableContainers
error: &error];
我如何克服此响应问题?有人面临类似的问题吗?有什么想法可以成功使iOS Swift / Objective Project中的oauth 1.0身份验证成功吗?