使用SkyDrive创建文件夹问题

时间:2012-03-15 14:57:18

标签: c# onedrive liveconnect

我已经阅读了有关使用Live SDK here在SkyDrive中创建文件夹的信息(那里没有提及'boundary'参数),这是我的代码:

    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”:“The   提供的标题'Content-Type'缺少必需的参数   'boundary'。“}}

我做错了什么?我错过了什么吗?

感谢您的时间!

1 个答案:

答案 0 :(得分:5)

尝试使用WindowsLiveClient,而不是从头开始创建自己的webrequest。我在文档上尝试了示例代码,它对我很好。这假定人们已经登录到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 request时,会出现错误。 Windows Live的REST API documentation也讨论了这个问题,但不是在制作文件夹的情况下,这表明拆分请求是在内置LiveConnectClient的某个地方完成的。