2

我在这里阅读了有关使用 Live SDK 在 SkyDrive 中创建文件夹的信息(此处未提及“边界”参数),这是我的代码:

    WebRequest request = WebRequest.Create("https://apis.live.net/v5.0/folder.77e1a950546be643.77E1A950546BE643!202/files/");
    request.Method = "POST";
    string postData = "{name: \"My example folder\"}";
    byte[] byteArray = Encoding.UTF8.GetBytes(postData);
    request.Headers.Add("Authorization", "Bearer " + access_token);
    request.ContentType = "application/json";
    request.ContentLength = byteArray.Length;

不知道为什么我会得到 400 的回报:

{ "error": { "code": "request_header_invalid", "message": "提供的标头 'Content-Type' 缺少必需的参数 'boundary'。" } }

我做错了什么?我有什么遗漏吗?

谢谢你的时间!

4

1 回答 1

5

尝试使用 WindowsLiveClient 而不是从头开始创建自己的 web 请求。我尝试了文档上的示例代码,它对我来说效果很好。这假定人们已经登录到 Windows Live,会话存储在“会话”中。

if (session == null)
{
    infoTextBlock.Text = "You must sign in first.";
}
else
{
    Dictionary<string, object> folderData = new Dictionary<string, object>();
    folderData.Add("name", "A brand new folder");
    LiveConnectClient client = new LiveConnectClient(session);
    client.PostCompleted += 
        new EventHandler<LiveOperationCompletedEventArgs>(CreateFolder_Completed);
    client.PostAsync("me/skydrive", folderData);
}

然后在操作完成时触发一个函数,用于捕获错误。

void CreateFolder_Completed(object sender, LiveOperationCompletedEventArgs e)
{
    if (e.Error == null)
    {
        infoTextBlock.Text = "Folder created.";
    }
    else
    {
        infoTextBlock.Text = "Error calling API: " + e.Error.ToString();
    }
}

根据 w3,当您发出HTTP206 请求(多部分请求)时会发生错误。Windows Live 的REST API 文档也谈到了这一点,但不是在创建文件夹的上下文中,这表明拆分请求是在内置 LiveConnectClient 的某个地方完成的。

于 2012-03-15T15:51:12.960 回答