0
아래 코드에서 iot.listCertificates가 완벽하게 실행되며 AWS IOT 콘솔의 모든 인증서를 볼 수 있지만 명령 iot.createKeysAndCertificate를 실행하려고하면 네트워크 오류가 발생합니다.AWS IOT createKeysAndCertificate가 네트워크 오류를 발생시킵니다. 오류
제발 도와주세요. 감사합니다 !!
var params = {};
iot.listCertificates(params, function(err, data) {
if (err) console.log(err, err.stack); // an error occurred
else console.log(data); // successful response
});
alert("Attempting to create new thing!!");
params = {
setAsActive:false
};
iot.createKeysAndCertificate(params, function(err, data) {
if (err)
alert(err);
else
alert("New thing added to AWS IOT");
});