如何使用libcurl将图片上传到最重要的服务器?

问题描述 投票:0回答:1

[试图构建一个C ++应用程序以将图像上传到最重要的服务器(版本5.14.0)。通过使用我的C ++代码,我可以获得访问令牌,通道ID。但是无法使用libcurl上传图像。这是我的CPP代码(现在使用libcurl):

void uploadPicture(string url,string channelId, string path,string fileName,string token)
{
    url += "/api/v4/files";

    CURL *curl;

    struct curl_httppost *formpost = NULL;
    struct curl_httppost *lastptr = NULL;

    curl_formadd(&formpost, &lastptr,
        CURLFORM_COPYNAME, "files",
        CURLFORM_FILE, path.c_str(),
        CURLFORM_FILENAME,"test.jpg",
        CURLFORM_CONTENTTYPE, "image/jpeg",
        CURLFORM_END);

    curl_formadd(&formpost, &lastptr,
        CURLFORM_COPYNAME, "client_ids",
        CURLFORM_COPYCONTENTS, "test.jpg",
        CURLFORM_END);

    curl_formadd(&formpost, &lastptr,
        CURLFORM_COPYNAME, "channel_id",
        CURLFORM_COPYCONTENTS, channelId.c_str(),
        CURLFORM_END);

    struct curl_slist *headers = NULL;

    string auth = "Authorization:Bearer ";
    auth += token;
    headers = curl_slist_append(headers, "Content-Type:multipart/form-data");
    headers = curl_slist_append(headers, auth.c_str());
    CURLcode res;
    curl = curl_easy_init();

    if (curl)
    {
        res = curl_easy_setopt(curl, CURLOPT_URL, url.c_str());         
        res = curl_easy_setopt(curl, CURLOPT_HTTPHEADER, headers);      
        res = curl_easy_setopt(curl, CURLOPT_HTTPPOST,formpost);         
        res = curl_easy_setopt(curl, CURLOPT_WRITEFUNCTION, getFileInfo);
        res = curl_easy_setopt(curl, CURLOPT_POST, 1);                
        res = curl_easy_perform(curl);  
        if (res != 0)
        {
            curl_slist_free_all(headers);
            curl_easy_cleanup(curl);
        }
    }

}

但是它不起作用...请告诉我问题出在哪里。

c++ image upload libcurl mattermost
1个回答
0
投票

终于。我找到了解决方案:

void uploadByMimeApi(string url, string channelId, string path, string fileName, string token)
{
    url += "/api/v4/files";

    CURL *curl = curl_easy_init();
    curl_mime *mime;
    curl_mimepart *part;
    curl_mimepart *part2;
    curl_mimepart *part3;

    /* Build an HTTP form */
    mime = curl_mime_init(curl);
    part = curl_mime_addpart(mime);

    curl_mime_name(part, "files");
    curl_mime_filedata(part, path.c_str());
    curl_mime_type(part, "image/jpeg");

    part2 = curl_mime_addpart(mime);
    curl_mime_data(part2, channelId.c_str(), CURL_ZERO_TERMINATED);
    curl_mime_name(part2, "channel_id");

    part3 = curl_mime_addpart(mime);
    curl_mime_data(part3, "test", CURL_ZERO_TERMINATED);
    curl_mime_name(part3, "client_ids");

    //header issue
    struct curl_slist *headers = NULL;
    static const char buf[] = "Expect:";
    string auth = "Authorization:Bearer ";
    auth += token;
    headers = curl_slist_append(headers, auth.c_str());
    headers = curl_slist_append(headers, buf);

    /* Post and send it. */
    curl_easy_setopt(curl, CURLOPT_VERBOSE, 1L);
    curl_easy_setopt(curl, CURLOPT_HTTPHEADER, headers);
    curl_easy_setopt(curl, CURLOPT_MIMEPOST, mime);
    curl_easy_setopt(curl, CURLOPT_URL, url.c_str());
    curl_easy_setopt(curl, CURLOPT_WRITEFUNCTION, getFileInfo);
    curl_easy_perform(curl);

    /* Clean-up. */
    curl_easy_cleanup(curl);
    curl_mime_free(mime);
}
© www.soinside.com 2019 - 2024. All rights reserved.