我有一个 Dialogflow 代理,我正在使用内联编辑器(由 Cloud Functions for Firebase 提供支持)。当我尝试通过使用获取外部 api 数据时,request-promise-native
我不断进入Ignoring exception from a finished function
我的 firebase 控制台。
function video(agent) {
agent.add(`You are now being handled by the productivity intent`);
const url = "https://reqres.in/api/users?page=2";
return request.get(url)
.then(jsonBody => {
var body = JSON.parse(jsonBody);
agent.add(body.data[0].first_name)
return Promise.resolve(agent);
});
}