我想發佈json使用cURL在Lua並附加多部分文件。嘗試以下方式,但它不起作用:如何發佈json與捲曲文件
local cURL = require "cURL"
c = cURL.easy{
url = "http://posttestserver.com/post.php",
post = true,
httpheader = {
"Content-Type: application/json";
};
postfields = "{}";
}
c:setopt_httppost(curl.form()
:add_file('file', recording_filename, 'audio/mp4',
filename..'.mp4', {'Content-length: ' .. fileSize}
))
c:perform()
任何幫助將是非常可觀的!謝謝!
我錯了JSON數據連接爲HTML文件,我會盡力使這項工作。 – os11k