使用curl_formadd在多帖子中使用libcurl设置内容处置自由文本
如何使用curl_formadd在多帖子中使用libcurl设置内容处置整个文本 例如,
将其设置为多/部分 http 帖子中的一个部分。
内容处置:表单数据;名称=“上传文件” 文件名=“text.zip” 谢谢, 纳伊姆
How I can set content-disposition whole text using libcurl in multi post using curl_formadd
e.g
set this for one part in multi/part http post.
Content-Disposition: form-data; name="UploadFile" filename="text.zip"
Thanks,
Naeem
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您无法使用 curl_formadd() 来“设置整个文本”。
curl_formadd() 只是创建一个结构并将其添加到“structcurl_httppost”结构的链接列表中,该链接列表是将指令传递给 libcurl 的。您可以自己构建并填充这样的链接列表,然后可以将文本设置为您喜欢的任何内容。
You cannot "set the whole text" using curl_formadd().
curl_formadd() just creates and adds a struct to a linked list of 'struct curl_httppost' structs, and that linked list is what passes instructions to libcurl. You can build and populate such a linked list yourself and then you can set the text to whatever you like.