OneDrive REST API调用后错误请求
本文关键字:错误 请求 调用 REST API OneDrive | 更新日期: 2023-09-27 18:19:59
我正在尝试在我的应用程序中使用REST API,但无法使其工作。
成功获取授权码并保存。(有wl.offline_access
权限)
我想登录OneDrive并在后台任务中上传文件,所以我需要刷新令牌。然后我进行POST调用以获取刷新令牌,但它不起作用。我做错了什么?
这是我的密码。
var data = "client_id=CLIENT_ID&redirect_uri=https://login.live.com/oauth20_desktop.srf&client_secret=CLIENT_SCRET&code=AUTHORIZATION_CODE&grant_type=authorization_code";
data = Uri.EscapeDataString(data);
var webClient = new WebClient
{
Headers =
{
[HttpRequestHeader.ContentType] = "application/x-www-form-urlencoded"
}
};
webClient.UploadStringCompleted += (sender, e) =>
{
// e.Result throws an exception of type 'System.Reflection.TargetInvocationException'
// e.Error = {"The remote server returned an error: NotFound."}
// e.Error.Response.StatusCode = BadRequest
// e.Error.Response.Headers = {Cache-Control: no-store
// Pragma: no-cache
// Content-Length: 113
// Content-Type: application/json
// Server: Microsoft-IIS/8.5
// X-WLID-Error: 0x80049D58
// X-Content-Type-Options: nosniff
// Date: Sat, 31 Oct 2015 20:22:04 GMT
// Connection: close}
};
var uri = new Uri("https://login.live.com/oauth20_token.srf",UriKind.Absolute);
webClient.UploadStringAsync(uri, "POST", data);
在代码流中检索到的代码在很长一段时间内无效。您要做的是在检索代码后立即存储上面POST调用返回的刷新令牌。然后,您可以使用该刷新令牌离线检索访问令牌。刷新令牌的有效期为一年,每当您检索到新的访问令牌时,您都会收到一个新的令牌。OneDrive代码流文档包含详细信息。