Actions on google Google Actions/Dialogflow-打开已安装的应用程序

Actions on google Google Actions/Dialogflow-打开已安装的应用程序,actions-on-google,dialogflow-es,Actions On Google,Dialogflow Es,我有一个Google Actions应用程序连接到Dialogflow和Firebase。有没有办法从Dialogflow打开另一个Java应用程序(安装在设备上,例如Android)?我希望深层链接的“原生android应用程序”会是一个不错的选择,但我什么也找不到 总而言之,我考虑以下流程: 与“应用程序ABC”交谈(谷歌助手将初始化谷歌操作应用程序) 发送1(将调用“应用程序ABC”中的发送功能) “应用程序ABC”将返回一个到本机android应用程序“本机android应用程序”(本机

我有一个Google Actions应用程序连接到Dialogflow和Firebase。有没有办法从Dialogflow打开另一个Java应用程序(安装在设备上,例如Android)?我希望深层链接的“原生android应用程序”会是一个不错的选择,但我什么也找不到

总而言之,我考虑以下流程:

  • 与“应用程序ABC”交谈(谷歌助手将初始化谷歌操作应用程序)
  • 发送1(将调用“应用程序ABC”中的发送功能)
  • “应用程序ABC”将返回一个到本机android应用程序“本机android应用程序”(本机android ap)的深度链接plication://info?id=")
  • 当用户单击返回的响应时,本机android应用程序将被打开

  • 它仍在开发者预览中(因此您可以测试它,但还不能公开发布),但您可以使用作为GoogleAPI操作一部分的。您需要在Actions developer控制台中链接该应用程序,然后您将能够执行以下操作:

    function androidLink (app) {
      app.askToDeepLink('Great! Looks like we can do that in the Android app.', 'Gizmos for Android',
        'example://gizmos', 'com.example.gizmos', 'handle this for you');
    
      // Results in prompt:
      // "Great! Looks like we can do that in the Android app."
      // "Can I send you to Gizmos for Android mobile app to handle this for you?"
    }
    

    你说“我什么都找不到”是什么意思?任何有用的东西,这就是为什么我在这里问。