在智能手机上从 google 助手打开自定义应用程序

open custom app from google assistant on smartPhone

问题来了, 我正在开发一个 google 助手应用程序,我应该在其中向用户显示一个列表,当他按下列表中的项目时,我应该打开另一个应用程序。 我能够使用以下内容创建列表:-

app.askWithList(app.buildRichResponse()
      .addSimpleResponse('Alright')
      .addSuggestions(
        ['Basic Card', 'List', 'Carousel', 'Suggestions']),
      app.buildList('Things to learn about')
      .addItems(app.buildOptionItem('MATH_AND_PRIME', ['math', 'math and prime', 'prime numbers', 'prime'])
        .setTitle('Math & prime numbers')
        .setDescription('42 is an abundant number because the sum of its ' +
          'proper divisors 54 is greater…')
        .setImage('http://example.com/math_and_prime.jpg', 'Math & prime numbers'))
      .addItems(app.buildOptionItem('EGYPT', ['religion', 'egpyt', 'ancient egyptian'])
        .setTitle('Ancient Egyptian religion')
        .setDescription('42 gods who ruled on the fate of the dead in the ' +
          'afterworld. Throughout the under…')
        .setImage('http://example.com/egypt', 'Egypt')
      )
      .addItems(app.buildOptionItem('RECIPES', ['recipes', 'recipe', '42 recipes'])
        .setTitle('42 recipes with 42 ingredients')
        .setDescription('Here\'s a beautifully simple recipe that\'s full ' +
          'of flavor! All you need is some ginger and…')
        .setImage('http://example.com/recipe', 'Recipe')
      )
    );

有人知道怎么做吗?

Google 助手不支持推送消息,因此当用户 select 某事时,您需要使用 Fcm/Gcm 从您的 fulfillment 发送推送消息。这意味着您需要在您的应用程序中实现推送消息,您需要帐户链接和一个 oauth2 服务器。至少目前有很多工作要做。