我已经创建了一个webhook,使用dialogflow-fulfillment根据平台正确返回不同的数据,包括我为另一个服务创建的自定义数据。我已经测试过webhook,并且知道如果我将originalDetectIntentRequest.source更改为自定义负载中使用的平台,它就会工作。

{
    "payload": {
        "jokes-api": {
            "success": true,
            "text": "These are some jokes",
        }
    },
    "outputContexts": []
}

我可以使用dialogflow-nodejs-client-v2'ssessions.detectIntent获得响应,但是fullfilment返回时平台设置为PLATFORM_UNSPECIFIED,而不是我想要的自定义有效负载。
[{
    "responseId": "c56c462f-bb3b-434a-b318-3739f58e6f6d",
    "queryResult": {
        "fulfillmentMessages": [{
            "platform": "PLATFORM_UNSPECIFIED",
            "card": {
                "buttons": [],
                "title": "Jokes",
                "subtitle": "These are some jokes",
                "imageUri": ""
            },
            "message": "card"
        }],
        "queryText": "tell me a joke",
        /* ... */
        "intent": {
            "name": "projects/my-jokes/agent/intents/56887375-3047-4993-8e14-53b20dd02697",
            "displayName": "Jokes",
            /* ... */
        },
        "intentDetectionConfidence": 0.8999999761581421,
    }
}]

查看webhook的日志,可以看到originalDetectIntentRequest对象存在,但未设置源。
{
  "responseId": "c56c462f-bb3b-434a-b318-3739f58e6f6d",
  "queryResult": {
    "queryText": "tell me a joke",
    "speechRecognitionConfidence": 0.9602501,
    /* ... */
    "intent": {
      "name": "projects/my-jokes/agent/intents/56887375-3047-4993-8e14-53b20dd02697",
      "displayName": "Jokes"
    },
    /* ... */
  },
  "originalDetectIntentRequest": {
    "payload": {
    }
  },
  "session": "projects/my-jokes/agent/sessions/12345"
}

如何在dialogflow-nodejs-client-v2中设置平台或源以获得所需的响应?

最佳答案

sessions.detectIntentapi有一个queryParams参数,该参数有一个名为payload的字段。这就是“原始有效载荷”的去向。平台的名称进入该结构的source字段。所以你的电话应该是这样的:

sessionClient.detectIntent({
    session: sessionClient.sessionPath('<project_id>', '<session_id>'),
    queryInput: {
        text: {
            text: '<query>',
            languageCode: 'en-US'
        }
    },
    queryParams: {
        payload: {
            fields: {
                source: {
                    stringValue: '<platform>',
                    kind: 'stringValue'
                }
            }
        }
    }
})

我可以使用'slack'作为平台名来模拟slack集成调用。我还可以返回自定义平台名称的自定义负载。有效载荷在detectIntent字段中返回。

关于node.js - 如何在Dialogflow NodeJS客户端中设置自定义平台,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/51096251/

10-16 15:01