我想通过 garmin API 为我的设备获取“每日摘要”。
我可以从https://healthapi.garmin.com/获取数据,但不能通过 api 请求。
为了获取“每日摘要”,我执行以下步骤:
我创建 curl 命令:
curl -v -X POST -H "Content-Type: application/json;charset=utf-8" -d '{"dailies":[{"userAccessToken":"userAccessToken","uploadStartTimeInSeconds":1514847600,"uploadEndTimeInSeconds":1515597660,"callbackURL":" https://healthapi.garmin.com/wellnessapi/rest/dailies"}]}' http://mysite/testping.php
其中 userAccessToken - 是我用来登录https://healthapi.garmin.com/的令牌 。作为回应,我收到没有任何数据的请求。
我以手册“Health REST API Specification”为例。
请回答,为什么我不提供请求中的任何数据?