每当我的代码请求Kahoot URI时,其中的代码都不会运行,或者正文将设置为undefined
。
var req = require("request");
req("https://create.kahoot.it", (err, res, body) => {
console.log(body); //--> undefined or doesn't even log
});
req("https://www.google.com", (err, res, body) => {
console.log(body); //--> logs the body of the google site
});
这是Heroku的错误吗?或者有没有办法使这项工作?