Fitbit API:在日期的时间范围内不返回步骤

时间:2019-07-03 06:15:14

标签: ios swift fitbit

enter image description here

我正在iOS应用中使用Fitbit端点来获取以下步骤:

https://api.fitbit.com/1/user/-/activities/steps/date/2019-07-01/1d/15min/time/12:00/12:15.json

这是在某个时间间隔上获取日期的步骤,但是它返回一些活动的数组,例如瑜伽,步行,冬季活动等,但不返回该时间间隔的步骤计数。谁能告诉我如何获取相同的数据?

它返回结果为:

"categories": [
    {
        "activities": [
            {
                "accessLevel": "PUBLIC",
                "activityLevels": [
                    {
                        "id": 3016,
                        "maxSpeedMPH": -1,
                        "mets": 8.5,
                        "minSpeedMPH": -1,
                        "name": "6 - 8 inch step"
                    },
                    {
                        "id": 3017,
                        "maxSpeedMPH": -1,
                        "mets": 10,
                        "minSpeedMPH": -1,
                        "name": "10 - 12 inch step"
                    }
                ],
                "hasSpeed": false,
                "id": 90004,
                "name": "Aerobic step"
            },
            {
                "accessLevel": "PUBLIC",
                "hasSpeed": false,
                "id": 3015,
                "mets": 6.5,
                "name": "Aerobic, general"
            },

1 个答案:

答案 0 :(得分:0)

我找到了Fitbit返回此类数据的原因。仅仅是因为要获取当天的数据需要Fitbit的审核,否则我们可以使用“个人”应用程序类型来获取数据。