cURL得到回复

时间:2012-04-27 16:48:54

标签: c curl libcurl

我找到cURL文档来阅读/理解。我试图在这里做的是发布邮政编码并返回它是否有效。 到目前为止,这是我的功能(我设法从教程中拉出来)

int checkPostCode(char postCode[5])
{
    printf("checkPostCode\n");

    char uidPath[200] = "http://zim.cs.uow.edu.au/~dfs/cgi-bin/postcodes.cgi?pcode=";
    //Concatinate poth strings
    strcat (uidPath,postCode);
    //Output URl
    printf("%s \n ", uidPath);

    CURL *curl;
    CURLcode res;

    // Create our curl handle  
        curl = curl_easy_init();

    if (curl)  
        {  
        curl_easy_setopt(curl, CURLOPT_URL, uidPath);
        res = curl_easy_perform(curl);

        /* always cleanup */ 
        curl_easy_cleanup(curl);
    }

    return 0;
}

脚本返回“是”或“否”。 我只是不知道在if语句中输入什么来获得我的结果。

提前感谢:)。

1 个答案:

答案 0 :(得分:1)

听起来您想要从服务器读取响应。为此,您需要启用选项CURLOPT_READFUNCTION并指定一个回调函数,该回调函数将从网络接收数据并将其存储在char数组中。