繁体   English   中英

如何使用httpclient c#将文件上传到ASANA api中的任务

[英]how to upload a file to a task in ASANA api using httpclient c#

我试图通过HttpClient将文件附加到Asana中的任务,我收到一个错误:

{"errors":[{"message":"file: Missing input","help":"For more information on API status codes and how to handle them, read the docs on errors: https://asana.com/developers/documentation/getting-started/errors"}]}

我正在提出的请求具有以下格式。

static async void GoPost(byte[] image)
    {
        string ApiKey = "<API_KEY>";

        HttpClient httpClient = new HttpClient();
        httpClient.DefaultRequestHeaders.Accept.Clear();
        httpClient.DefaultRequestHeaders.TryAddWithoutValidation("Authorization", "Bearer " + ApiKey);
        MultipartFormDataContent form = new MultipartFormDataContent("Upload----");


        form.Add(new ByteArrayContent(image, 0, image.Length), "profile_pic", "1.png");
        HttpResponseMessage response = await httpClient.PostAsync("https://app.asana.com/api/1.0/tasks/<TASK_ID>/attachments", form);

        var input = await response.Content.ReadAsStringAsync();
        Console.WriteLine(input);
    }

有人可以帮忙吗?

找到了解决方案

    public async Task<string> AttachFile(string file, string fileName, string id)
    {
        var decoded = Convert.FromBase64String(file);

        HttpClient httpClient = new HttpClient();
        httpClient.DefaultRequestHeaders.TryAddWithoutValidation("Authorization", "Bearer " + ApiKey);

        httpClient.DefaultRequestHeaders.TryAddWithoutValidation("Content-Type", "multipart/form-data");

        MultipartFormDataContent form = new MultipartFormDataContent();

        var fileCont = new ByteArrayContent(decoded, 0, decoded.Length);
        fileCont.Headers.Add("Content-Disposition", $"form-data; name=\"file\"; filename=\"{fileName}\"");
        form.Add(fileCont);

        HttpResponseMessage response = await httpClient.PostAsync($@"https://app.asana.com/api/1.0/tasks/{id}/attachments", form);
        var responseData = await response.Content.ReadAsStringAsync();

        if (response.IsSuccessStatusCode)
            return "file was uploaded successfully";

        throw new ArgumentException($"Error code: {response.StatusCode}; {responseData}");
    }

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM