我将以下代码与 NodeMCU 固件的 HTTP 模块一起使用。根据文档,HTTP 和 HTTPS URL 都应该可以工作。
https://nodemcu.readthedocs.io/en/master/en/modules/http/#httppost
虽然我在使用“https”时遇到错误。'http' 对我来说很好用。对于代码中的 URL,我面临以下错误。
“为 HTTPS 端口发送了普通的 http 请求”。
请帮忙。
http.post('https://maker.ifttt.com/trigger/......',
'Content-Type: application/json\r\n',
'{"value1":"mainlobby"}', function(code, data)
if (code < 0) then
print("HTTP request failed")
else
print(code, data)
end
end