google-assistant-ruby icon indicating copy to clipboard operation
google-assistant-ruby copied to clipboard

A ruby gem for creating Google Assistant actions

Results 8 google-assistant-ruby issues
Sort by recently updated
recently updated
newest added

Hi! it seems like you use the App Actions and not [Conversational](https://developers.google.com/assistant/conversational/prompts#format_of_a_prompt) ones, right? i been struggle with different JSON request 😔

Can we implement web based authentication method instead of saving credentials in application ? That would be easy go make multiple account to use same webhook

Update to use assistant API v2. This makes some breaking changes, so this will need to bump the version of the gem. Resolves #29. This branch is ready to test.

The Google Assistant API v2 supports account linking [during the conversation](https://developers.google.com/actions/identity/account-linking#during_the_conversation). This is a more natural flow than requiring users to sign in before they can even talk to your...

Google API requests come in with a list of the device's capabilities: ```json "surface": { "capabilities": [ { "name": "actions.capability.AUDIO_OUTPUT" }, { "name": "actions.capability.SCREEN_OUTPUT" } ] } ``` Add support...

They're on v2 now. We should support that. See https://developers.google.com/actions/reference/v1/migration#submitting_your_v2_api-enabled_app_1 for details.

It seems Google is going to [add support for creating accounts](https://developers.google.com/actions/develop/identity/account-linking) directly via Google Assistant. ![screenshot 2017-01-12 22 03 35](https://cloud.githubusercontent.com/assets/430986/21917070/08e09e76-d913-11e6-8b07-799eebabc346.png) When they make this available, we should support it.

It would be nice to document the code itself now that it's taking shape.