我最近创建了一个动作,并在网络模拟器和Pixel 2设备上对其进行了测试。对我来说很好。但是在审核过程中,Google团队提到在审核时发现该错误,表明我的应用目前没有响应。请稍后再试。 (附上截图)。社区中的某人可以帮助我解决此问题吗?
如果有帮助,下面是完整代码。
'use strict';
// Import the Dialogflow module from the Actions on Google client library.
const {dialogflow} = require('actions-on-google');
// Import the firebase-functions package for deployment.
const functions = require('firebase-functions');
// Instantiate the Dialogflow client.
const app = dialogflow({debug: true});
// Handle the Dialogflow intent named 'favorite color'.
// The intent collects a parameter named 'color'.
app.intent('think number', (conv, {nextStep}) => {
conv.close('The result is 9.');
});
// Set the DialogflowApp object to handle the HTTPS POST request.
exports.dialogflowFirebaseFulfillment = functions.https.onRequest(app);
审核小组回复的屏幕截图:
答案 0 :(得分:1)
有时候,如果它们与Dialogflow之间存在网络问题,或者Dialogflow没有响应,它们会很快被拒绝。确保打开Dialogflow的日志以确保没有问题。
通常,如果您没有看到任何错误并且似乎可以正常使用,最简单的操作是:
重新提交
答复并告诉他们您正在使用Dialogflow,应该有答复。