3

我正在使用 Yandex 磁盘 API ( http://api.yandex.com/disk/doc/dg/reference/propfind_space-request.xml )。在请求正文中添加属性时遇到问题(quota-available-bytesquota-used-bytes

public static string SpaceInfo(string path)
{
    // Authorization.
    HttpWebRequest webReq = (HttpWebRequest)WebRequest.Create("https://webdav.yandex.ru/");
    webReq.Accept = "*/*";
    webReq.Headers.Add("Depth: 0");
    webReq.Headers.Add("Authorization: OAuth " + token);
    webReq.Method = "PROPFIND";

    // Adding data in body request.
    string inputData = @"<D:propfind xmlns:D=""DAV:""><D:prop><quota-available-bytes/></D:prop></D:propfind>";
    byte[] buffer = new ASCIIEncoding().GetBytes(inputData);

    webReq.ContentType = "text/xml; encoding='utf-8";
    webReq.ContentLength = buffer.Length;

    try
    {
        HttpWebResponse resp = (HttpWebResponse)webReq.GetResponse();
        StreamReader sr = new StreamReader(resp.GetResponseStream());
        string dinfo = sr.ReadToEnd();

        return dinfo;
    }
}

我没有得到任何回应,也许我可以使用其他方法?我应该怎么办?谢谢!

4

1 回答 1

4

配额可用字节应使用相同的命名空间“D”

于 2013-09-11T16:37:18.503 回答