我正在尝试创建一个库以从Garmin Connect下载内容。

没有太多的文档,或者不是公开的,但是我试图将代码基于出色的Tapiriik project

Garmin API似乎需要先创建 session (基于BasicAutentication cookie),然后才能下载内容。

我尝试使用NSURLConnection和NSURLSession失败(Sync / Async&With委托和CompletionHandler也尝试过)。

// POST request with the params I have found on the tapiriik example
[NSMutableURLRequest requestWithURL:[NSURL URLWithString:@"https://connect.garmin.com/signin"]];
NSString *post = [NSString stringWithFormat:@"j_id1=javax.faces.ViewState&login=login&login:loginUsernameField=%@&login:password=%@&login:signInButton=Sign In", theUsername, thePassword];
[request setHTTPMethod:@"POST"];
[request setHTTPBody:[post dataUsingEncoding:NSUTF8StringEncoding]];
[NSURLConnection sendSynchronousRequest:request returningResponse:&response error:&error];

响应为200,我检查了用户个人资料,似乎可以成功运行。但是,如果我尝试下载 Activity ,则会收到403
request = [NSMutableURLRequest requestWithURL:[NSURL URLWithString:@"https://connect.garmin.com/proxy/activity-search-service-1.2/json/activities?start=0&limit=10"]];
NSData *responseData = [NSURLConnection sendSynchronousRequest:request returningResponse:&response error:&error];

PD:我检查了其他github项目,但是它们都以与tapiriik代码类似的方式工作

有什么建议?

最佳答案

我终于解决了。 Garmin似乎有一项新的发展政策。

最后,我按照这里的步骤操作:https://forums.garmin.com/showthread.php?72150-connect-garmin-com-signin-question&p=264580#post264580

我将代码上传到GitHub并在此处共享。

问候

关于ios - 适用于iOS的Garmin Connect API,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/23859610/

10-10 20:26