Most recent activity
-
-
My REST API example:
var options = { protocol: "http:", method: 'POST', host: 'XXXX.XXXX.XXXX.XXXX', // Proxy IP path: 'https://endpoint.com/', // Landing URL port: 8888, pathname: "restpath", search: null, query: null, headers: { "Content-Type": "application/json", "Content-Length": content.length } }; var req = require("http").request(options, function (res) { var d = ""; res.on('data', function (data) { if (d.length < 8) d += data; }); res.on('close', function (data) { callback(); }); }); req.on('error', function (e) { callback(); }); req.end(content); } catch (f) { }
-
-
-
-
Dear MaBe, maybe you can try this url with your new AT?
https://djdjeleeisvpd3y-elink.adb.eu-frankfurt-1.oraclecloudapps.com/ords/demo/teszt/test/ -
Thank you, Gordon, for the quick solution! I can't upgrade my firmware, probably my usb-ttl converter is wrong, so i ordered a new one. Your example works with the AT version:1.2.0.0(Jul 1 2016 20:04:45) firmware, but:
it doesn't work with this url:https://djdjeleeisvpd3y-elink.adb.eu-frankfurt-1.oraclecloudapps.com/ords/demo/teszt/test/
This is interesting because the Certificate Signature Algorithm is the same:
PKCS #1 SHA-256 With RSA EncryptionI hope the new firmware will fix this problem.
-
I couldn't find any reference to it in this document, maybe it was made for the older firmware.
The AT versions are also old in the document: such as, v1.2.0.0, v1.1.3.0, v1.1.2.0.
The good news is that there is a reference to TLS 1.3 on the Adafruit site:
https://blog.adafruit.com/2022/12/13/esp32-esp8266-https-and-ssl-tls-encryption-basic-concepts-esp32/ -
Merry Christmas!