我正在尝试在microsoft health api中访问我的帐户。 I have followed the steps in order to access access token。我在徘徊的是获取我的帐户信息的最后步骤是什么?我定义了几个参数,我有一个重定向URI,一个访问令牌,密码,用户ID,范围。如何使用它们才能访问我的帐户数据?
如何使用我之前步骤中收到的访问令牌验证我的帐户,以便访问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"
但是我收到了一条消息
页面未找到
答案 0 :(得分:8)
通过JSON获取请求,具体取决于您将执行此类操作的信息
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
}