通过 HTTPS 上传 .mp4

我正在尝试将 .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;


        }

    }


蛊毒传说
浏览 262回答 2
2回答

HUWWW

总是得到一个“400 - 错误的请求 - 没有源 URL”(如果你上传你自己的,文档说不需要)这让我相信内容没有被识别。您需要为ByteArrayContent.&nbsp;该文档显示Request Parameters包含“文件:如果未提供 source_image_url 则需要字符串(二进制)”。代码应如下所示:MultipartFormDataContent&nbsp;multipartContent&nbsp;=&nbsp;new&nbsp;MultipartFormDataContent(); multipartContent.Add(new&nbsp;ByteArrayContent(bytes),"file");

桃花长相依

您的代码似乎与 {api_key} 不匹配。您不在任何地方使用“dic”变量。你可以试试用v1/gifs?api_key=YOUR_API_KEY&file=。其中 YOUR_API_KEY 应替换为从 giphy 获得的 API 密钥。
打开App,查看更多内容
随时随地看视频慕课网APP