我正在尝试将 .mp4 文件上传到 Giphy.com 的 API。它说将文件作为“二进制”发送,我想我对它们的确切含义感到困惑。如果您在“上传端点”处滚动到底部,则会看到以下文档。https://developers.giphy.com/docs/
这就是我现在所拥有的。
我已经尝试了多个版本(使用StringContent, MultipartFormDataContent, ByteArrayContent, HttpMessages... 等)并且总是得到“400 - Bad Request - No Source Url”(如果你上传你自己的,文档说不需要)让我相信内容未被识别。
public async Task<HttpResponseMessage> UploadVideoAsync(StorageFile file)
{
using (var stream = await file.OpenStreamForReadAsync())
{
byte[] bytes = new byte[stream.Length];
await stream.ReadAsync(bytes, 0, (int)stream.Length);
Dictionary<string, string> dic = new Dictionary<string, string>
{
{ "file", Encoding.ASCII.GetString(bytes) },
{ "api_key", api_key }
};
MultipartFormDataContent multipartContent = new MultipartFormDataContent();
multipartContent.Add(new ByteArrayContent(bytes));
var response = await httpClient.PostAsync($"v1/gifs?api_key={api_key}", multipartContent);
var stringResponse = await response.Content.ReadAsStringAsync();
return response;
}
}
HUWWW
桃花长相依
相关分类