我按照这个示例创建了一个http-post,但它似乎只适用于不到1000帖子的字符。我如何指定发布大数据?
I followed this example to create a http-post but it only seems work for less than 1000 characters for post. How may i specify to post large data?
您是否尝试使用 CURLOPT_POSTFIELDSIZE_LARGE 而不是 CURLOPT_POSTFIELDSIZE
curl_easy_setopt(curl, CURLOPT_POSTFIELDSIZE, (long)strlen(postthis));
Did you try using CURLOPT_POSTFIELDSIZE_LARGE instead of CURLOPT_POSTFIELDSIZE in
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
暂无简介
文章 0 评论 0
接受
发布评论
评论(1)
您是否尝试使用 CURLOPT_POSTFIELDSIZE_LARGE 而不是 CURLOPT_POSTFIELDSIZE
Did you try using CURLOPT_POSTFIELDSIZE_LARGE instead of CURLOPT_POSTFIELDSIZE in