C# Vimeo 上传 - 不工作

C# Vimeo Upload - not working

我正在尝试使用 Vimeo 文档将视频上传到我在 Vimeo 中的专业帐户:https://developer.vimeo.com/api/upload/videos#upload-your-video

为了尝试一下,我制作了一个简单的 C# 控制台应用程序: 我可以得到 upload_ticket.

当我 "PUT" 视频使用 WebClient.UploadData 文件发送时。

try
        {
            WebClient wc = new WebClient();
            wc.Headers.Clear();
            wc.Headers.Add("Authorization", "bearer xxxxxxxxxxx");
            wc.Headers.Add("type", "streaming");                

            var vimeoTicket = JsonConvert.DeserializeObject<JObject>(wc.UploadString("https://api.vimeo.com/me/videos", "POST", ""));

            var file = File.ReadAllBytes(@"d:.mp4");

            wc.Headers.Clear();                

            var result= wc.UploadData(new Uri(vimeoTicket["upload_link_secure"].ToString()), "PUT", file);              

            WebClient wc1 = new WebClient();
            wc1.Headers.Clear();
            wc1.Headers.Add("Content-Range", "bytes */*");

            //This line will get me an execption {"The remote server returned an error: (308) Resume Incomplete."}
            var ff1 = wc1.UploadData(vimeoTicket["upload_link_secure"].ToString(), "PUT", new byte[0]);                
        }
        catch (Exception h)
        {

            throw;
        }

在 API 文档中说 "If this file exists, this will return a response with a HTTP 308 status code and a Range header with the number of bytes on the server."

那么为什么我没有得到异常并且没有像文档中那样得到任何响应??

谢谢

出于某种原因,WebClient 将响应 308 处理为错误,现在我已经设法将我需要的代码放入异常块中 - 直到我找到一种方法来说服 WebClinet 308 不是敌人。 ...