我计划使用Google Action来检索某些网页内容。 我尝试使用'request'和'read-art',但我在dns.js中遇到'getaddrinfo ENOTFOUND'。 网页网址位于https://jiabailie.github.io/,下方是代码段。
read(webPage, function(err, art, options, resp) {
if(err) {
throw err;
}
var content = art.html;
let inputPrompt = app.buildInputPrompt(true, '<speak>' + content + '</speak>', NO_INPUTS);
app.ask(inputPrompt);
})