我正在使用Ooyala sdk进行C#,并且在上传特定内容的图片方面遇到了问题。这是我的代码。很乐意得到一些帮助:
OoyalaAPI o = new OoyalaAPI(apikey, secretkey);
byte[] bytess = File.ReadAllBytes(@"C:\Users\Daniel\Desktop\FIRE2.jpg");
Hashtable booody = new Hashtable();
string exception = "";
object p = o.postBytes("assets/I2ZDlzbjrIFtbAxzrkJ3NLzEDR30jFYh/preview_image_urls", new Dictionary<string, string>(), bytess, out exception, null); //Upload File
booody.Add("type", "uploaded_file");
o.put("assets/I2ZDlzbjrIFtbAxzrkJ3NLzEDR30jFYh/primary_preview_image", new Dictionary<string, string>(), booody, out exception); //Pick The Thumbnail File
我得到的例外是(400)来自函数response = request.GetResponse()的错误请求 作为HttpWebResponse;
我会很感激这个问题的一些帮助。
答案 0 :(得分:0)
将preview_image_urls更改为preview_image_files ... 现在运作良好。