如何通过cURL查询时管理空格

时间:2014-06-13 05:31:14

标签: php curl libcurl

我正在使用cURL从服务器获取信息。 这是我得到的查询网址"http://md5.jsontest.com/?text=Fri Jun 13 2014 07:41:27 GMT+0300 (EEST)" 当通过浏览器直接命中时,我得到适当的响应,如下所示

{
   "md5": "c22f2d0c39cb6c9f15c170fbedfab634",
   "original": "Fri Jun 13 2014 07:41:27 GMT 0300 (EEST)"
}

但是当我用cURL示例尝试时,我得到406错误。以下是我的示例代码

int main(void)
{
  CURL *curl;
  CURLcode res;
int data2len;
char* temp = "http://md5.jsontest.com/?text=Fri Jun 13 2014 07:41:27 GMT+0300 (EEST)";

  curl = curl_easy_init();
  if(curl) {

    curl_easy_setopt(curl, CURLOPT_URL,temp );
    /* 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;
}

请帮助!!提前谢谢。

1 个答案:

答案 0 :(得分:0)

只应对参数值进行编码。您可以通过2种方式进行编码。

一种方法是替换

char* temp = "http://md5.jsontest.com/?text=Fri Jun 13 2014 07:41:27 GMT+0300 (EEST)";

char* temp = "http://md5.jsontest.com/?text=Fri%20Jun%2013%202014%2007:41:27%20GMT+0300%20%28EEST%29";

其他方式是使用curl_easy_escape方法。

int data2len;
char temp[1024]="";
strcat(temp,"http://md5.jsontest.com/?text=");
char* param1="Fri Jun 13 2014 07:41:27 GMT+0300 (EEST)";
curl = curl_easy_init();
if(curl) {
    strcat(temp,curl_easy_escape(curl,param1,strlen(param1)));
    curl_easy_setopt(curl, CURLOPT_URL,temp ); 

谢谢和问候。