我在heroku中安装了我的网站。我还有一个调度程序,它将每1天运行一次。它曾经在http上工作。最近,我更改了我的网站,以确保甚至http请求都重定向到https。之后,我的heroku调度程序无法访问path。计划的呼叫遵循文件,该文件仅向我的网站发出发布请求。任何帮助将不胜感激。
scheduleFile.js
var https = require("https");
var options = {
hostname: 'myapp.herokuapp.com',
port: 443, /* 80 for http */
path: '/someRoute',
method: 'POST',
headers: {
'Content-Type': 'application/json',
}
};
var req = https.request(options, function(res) {
res.setEncoding('utf8');
res.on('data', function (body) {
});
});
req.on('error', function(e) {
console.log('problem with request: ' + e.message);
});
// write data to request body
req.write('{"reqType": "xyz"}');
req.end();