如何从GoogleFit中提取睡眠?
文档没有提供任何睡眠端点,就像它们为步骤和所有其他作用域提供的一样。 Google对此不提供任何支持。
我正在使用apiclient,discovery discovery.build('fitness','v1', http=http_auth)
模块。
credentials = OAuth2Credentials.from_json(auth_client_json)
http_auth = credentials.authorize(httplib2.Http())
fitness_server = discovery.build('fitness','v1', http=http_auth)
body = [{"dataSourceId":"derived:com.google.step_count.delta:com.google.android.gms:estimated_steps"}]
fitness_server.users().dataset().aggregate(userId='me',body=body).execute(http=http_auth)
我正在寻找类似的睡眠方式。