curl post 中文内容及请求头信息的修改方法
curl_slist *plist = curl_slist_append(NULL, "Content-Type: application/x-www-form-urlencoded; charset=UTF-8");
curl post 中文内容及请求头信息的修改方法
//--------------------------------------------------
std::string xml_data = "";//"111";
KeyValues::iterator i;
for (i = kv.begin(); i != kv.end(); i++)
{
xml_data += i->first + "=" + i->second + "&";
}
curl_easy_setopt(curl_handle, CURLOPT_POST, 1);
curl_easy_setopt(curl_handle, CURLOPT_POSTFIELDS, xml_data.c_str());
curl_easy_setopt(curl_handle, CURLOPT_FOLLOWLOCATION, true);//应当是根据 location 自动再次请求
//--------------------------------------------------
//字符集//默认中文 gb2312
//增加HTTP Header
// curl_slist *plist = curl_slist_append(NULL, "Client-Key:m-5be02cd9ddfb11dcaf9700142218fc6e");
// curl_slist_append(plist, "username:winter_445@163.com");
// curl_slist_append(plist, "password:123456");
// curlRet = curl_easy_setopt(m_hCURL, CURLOPT_HTTPHEADER, plist);
//curl_slist *plist = curl_slist_append(NULL, "Content-Type: application/x-www-form-urlencoded; charset=UTF-8");
curl_slist *plist = curl_slist_append(NULL, "Content-Type: application/x-www-form-urlencoded; charset=GB2312");
//curl_slist_append(plist, "username:winter_445@163.com");
//curl_slist_append(plist, "password:123456");
curl_easy_setopt(curl_handle, CURLOPT_HTTPHEADER, plist);
//--------------------------------------------------
这样就可以将中文 post 过去了,至少 c# 的 string s = this.Request["name"]; 可以bcgc中文了.
--------------------------------------------------
http://blog.csdn.net/collin1211/article/details/3023757
CURL常见问题
分类: 网络编程备忘 2008-10-06 20:50 198人阅读 评论(0) 收藏 举报
CURL的中文资料比较少,下面是实际工作中用到,摸索出来的,记录之。
1、增加HTTP Header
curl_slist *plist = curl_slist_append(NULL, "Client-Key:m-5be02cd9ddfb11dcaf9700142218fc6e");
curl_slist_append(plist, "username:winter_445@163.com");
curl_slist_append(plist, "password:123456");
curlRet = curl_easy_setopt(m_hCURL, CURLOPT_HTTPHEADER, plist);
这样即可在HTTP Header中加入上面的内容。
2、增加Post Form的数据
curlRet = curl_easy_setopt(m_hCURL,CURLOPT_POSTFIELDS, "Client-Key=m-5be02cd9ddfb11dcaf9700142218fc6e&username=winter_445@163.com&password=123456");
像上面那样,可以在Post表单中加上任意数据。
3、让CURL记录Cookie
curlRet = curl_easy_setopt(m_hCURL, CURLOPT_COOKIEFILE, "");
curlRet = curl_easy_setopt(m_hCURL, CURLOPT_COOKIEJAR, "");
像上面那样设置一下,试验中发现不需要指定cookie文件名它也能工作,具体这两个设置有没会差别,暂不清楚,互联网上也有人提问此问题。
--------------------------------------------------
总的来说 curl 提供的接口还是太过简陋了.