1

我尝试了 google fit 的 Datasource api 中列出的所有来源。但是,我无法准确匹配 fit 应用程序上显示的步数。API返回的响应使用起来很麻烦。可以更具体地说明何时使用哪个 API。另外,我在 15 分钟前走了 91 步。但是,在发出 API 请求后,我仍然无法获取该数据。它只是显示过时的数据。不确定它是否支持实时。我有很好的 wifi 连接,但似乎数据尚未上传到谷歌云。Fit 应用程序执行 91 步。

以下是我的 api 请求:

GET /fitness/v1/users/me/dataSources/derived:com.google.step_count.delta:com.google.android.gms:estimated_steps/datasets/1429848000000000000-1429906530000000000 HTTP/1.1

结果总和与 Google Fit App 上今天的步数显示的数据不匹配

4

2 回答 2

1

在谷歌文档中。说

To record fitness data, use the Recording API to create a subscription for each data type you want to record.

用于Fitness.RecordingApi.subscribe订阅数据。然后使用Fitness.HistoryApi.readDataorFitness.HistoryApi.readDailyTotal来阅读。或者您可以使用 Sensor API 来监控阶跃变化。

于 2015-05-07T08:22:36.663 回答
0

我遇到了同样的问题,并最终通过以这种方式实施来解决它。

https://developers.google.com/fit/faq#how_do_i_get_the_same_step_count_as_the_google_fit_app

于 2016-06-01T20:22:47.453 回答