gpt4 book ai didi

c# - 从 Microsoft Health API 检索数据

转载 作者:太空狗 更新时间:2023-10-29 18:31:18 26 4
gpt4 key购买 nike

我正在尝试访问我在 Microsoft health api 中的帐户。 I have followed the steps in order to access access token .我正在徘徊的是获取我的帐户信息的最后步骤是什么?我定义了几个参数,我有一个重定向 URI、一个访问 token 、密码、用户 ID、范围。我如何使用它们来访问我的帐户数据?

如何使用我在前面步骤中收到的访问 token 验证我的帐户,以便访问 API?

文档中有以下有效 GET 请求的示例:

GET /v1/me/Profile HTTP/1.1 
Authorization: bearer EwCoAvF0BAAUkWhN6f8bO0+=

我应该执行什么请求。我不确定我是否理解这个例子。我正在尝试:

http://myurl.com/v1/me/Profile HTTP/1.1 
Authorization: bearer "access token"

但是我收到了一条消息

page not found

.

最佳答案

微软健康 API

通过 JSON Get 请求访问,根据信息你会做这样的事情

var url = "http://baseapiurl/v1/me/Activities";

using (var webClient = new System.Net.WebClient()) {
var json = webClient.DownloadString(url);

// This will give a response that can be parsed using a JSON library
}

Microsoft Health API

关于c# - 从 Microsoft Health API 检索数据,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35364546/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com