【发布时间】:2018-01-26 13:31:38
【问题描述】:
我必须将图像发送到我无法控制的 API,以便它可以进行一些人脸识别工作。似乎我正在发送图像,但我认为它没有以正确的方式完成,因为 API 响应说图像不是 JPEG 文件。任何人都可以告诉我我是否做错了???我正在使用 Xamarin HttpClient Mono 实现:
MultipartFormDataContent content = new MultipartFormDataContent();
content.Headers.Add("X-Auth-Token", "eb27c17f-8bd6-4b94-bc4f-742e361b4e6a");
var imageContent = new ByteArrayContent(ultimaImagen);
content.Headers.ContentType = MediaTypeHeaderValue.Parse("image/jpeg");
content.Add(imageContent, "image", "image.jpg");
try
{
HttpResponseMessage response = await _client.PostAsync("https://10.54.66.160:9000/3/matching/search?list_id=3c9f2623-28be-435f-a49f-4dc29c186809&limit=1", content);
string responseContent = await response.Content.ReadAsStringAsync();
}
catch (Exception ex)
{
throw;
}
这是 API 响应:
{
"detail": "Failed to decode image data. Detail: Not a JPEG file: starts with 0x2d 0x2d",
"error_code": 3001
}
【问题讨论】:
-
如何获取字节数据?您是否尝试将
imageContent转换回 jpeg? -
@DogeAmazed 我通过转换从相机获得的数据来获得字节数据。我认为我正在做的请求并不完全正确。
-
@NicoRiff 你能通过 Postman 成功地
Post到你的 web api 吗?如果是这样,请将 Postman 代码 sn-p 添加到您的问题中 -
@NicoRiff 我会检查您的字节数组的 JPEG 标头是否正确:en.wikipedia.org/wiki/JPEG#Syntax_and_structure
-
或许你应该发送
base64格式的图片?这取决于api服务
标签: c# xamarin xamarin.forms mono dotnet-httpclient