0

I want to develop a custom google assistant action that will get a web page, extract a piece of information, and read it aloud.

I'm looking for pointers for relevant sources.

If it's possible through services such as ifttt it's even better (though from what I saw the google assistant support in ifttt doesn't appear to support this scenario).

Prisoner
  • 49,922
  • 7
  • 53
  • 105
Ophir Yoktan
  • 8,149
  • 7
  • 58
  • 106

1 Answers1

1

You're looking to create an Action with the Actions-on-Google API. The easiest way would probably be to create a Firebase Function with node.js that handles the AoG request from Google, makes the call to the web page, extracts the information you need in a form that can be read aloud, and sends that back.

Prisoner
  • 49,922
  • 7
  • 53
  • 105