调度的Heroku无法通过https访问我的应用

时间:2018-08-30 22:10:35

标签: node.js heroku meteor

我在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();

0 个答案:

没有答案