如何正确地将图像发布到URL?

时间:2016-01-05 17:39:03

标签: c# http stocktwits

我正在尝试将图片发布到StockTwits API并收到422错误,作为回复说无法识别图像格式。该图像是一个png文件,因此它应该是有效的文件格式。我尝试过使用具有相同响应的jpeg。

我是否错误地对图像进行了编码,或者遗漏了HttpClient中的某些配置?

public void Share(string text, string imageFilePath)
{
    using(HttpClient client = new HttpClient())
        using (MultipartFormDataContent formData = new MultipartFormDataContent())
        {
            string      url             = stocktwitsCreateMessageUrl + "&" +
                                            "body="         + Core.Globals.UrlEncode(twit)  + "&" +
                                            "sentiment="    + StockTwitsSentiment.ToString().ToLower();

            byte[]      imageBytes      = File.ReadAllBytes(imageFilePath);
            HttpContent imageContent    = new ByteArrayContent(imageBytes);
            string      fileName        = Path.GetFileName(imageFilePath);
            formData.Add(imageContent, "chart", fileName); 
            HttpResponseMessage stockTwitsResponse  = await client.PostAsync(url, formData);
            Stream              responseContent     = await stockTwitsResponse.Content.ReadAsStreamAsync();
            string              result              = new StreamReader(responseContent).ReadToEnd();
            Print(result); // helper method
            if (!stockTwitsResponse.IsSuccessStatusCode)
            {
                LogErrorResponse(result, stockTwitsResponse);
                return;
            }
            else
                LogAndPrint(typeof(Custom.Resource), "ShareStockTwitsSentSuccessfully", new[] { Name }, Cbi.LogLevel.Information);
        }
}

响应:

  

{

     

“回复”:{“状态”:422},

     

“errors”:[{“message”:“我们无法识别图像格式。格式必须是以下之一:image / jpg image / jpeg image / pjpeg image / png image / x-png image / gif” }]

     

}

1 个答案:

答案 0 :(得分:3)

不要忘记将Content-Type标题设置为"image/png"

请参阅:https://msdn.microsoft.com/en-us/library/system.net.httpwebrequest.contenttype(v=vs.110).aspx