我想在我的项目 libcurl 库中使用。所以这里是我将 libcurl 库连接到 MSVS 2012 的步骤: 1. 我从官方网站libcurl-7.19.3-win32-ssl-msvc.zip下载了这个包 2. 我放在 C:\ 中的所有 dll 和 lib 文件Program Files\Microsoft Visual Studio 11.0\VC\lib 3. 带有头文件的 curl 文件夹,我复制到 C:\Program Files\Microsoft Visual Studio 11.0\VC\include 4. 在 VS 2012 的项目选项中,我添加了 curllib.lib 字符串 5 .dll 文件我也复制到项目的 Debug 文件夹
但是当我运行这个例子时:
int main(void)
{
CURL *curl;
CURLcode res;
curl = curl_easy_init();
if(curl) {
curl_easy_setopt(curl, CURLOPT_URL, "https://api.copy.com/oauth/request");
/* example.com is redirected, so we tell libcurl to follow redirection */
curl_easy_setopt(curl, CURLOPT_FOLLOWLOCATION, 1L);
/* Perform the request, res will get the return code */
res = curl_easy_perform(curl);
/* Check for errors */
if(res != CURLE_OK)
fprintf(stderr, "curl_easy_perform() failed: %s\n",
curl_easy_strerror(res));
/* always cleanup */
curl_easy_cleanup(curl);
}
return 0
}
我收到一个错误,提示缺少 libsasl.dll。什么是 libsasl.dll,如果包中没有这样的文件,我应该从哪里得到它。