无法向Kahoot发送请求

时间:2018-05-27 23:25:08

标签: node.js heroku discord discord.js npm-request

每当我的代码请求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的错误吗?或者有没有办法使这项工作?

1 个答案:

答案 0 :(得分:0)

我认为问题出在Kahoot:当我转到create.kahoot.it时,它会将我重定向到登录页面,所以我认为除非登录,否则无法访问该页面。