Actions on Google Smart-(phones | watches | speakers | earphones | tvs), PCs, Cars SDKs for Actions, Actions API, Assistant API, Home Graph API Dialogflow
build your actions. • Actions API - The API set to call functions (ex. sending notifications) • Home Graph API - To manipulate Home Graph (ex. Report State) • Dialogflow - The Natural Language Processing service. • Assistant SDK - To integrate Google Assistant with devices. • Assistant API - The Google Assistant gRPC interface.
Creating a new project, intent, Using an entity and Handing them by fulfillment code with the inline editor. Build Actions for the Google Assistant (Level 2) - Japanese Creating own fulfillment code, custom entity, Adding a deep-link, follow-up intent and Using helpers, SSML Build Actions for the Google Assistant (Level 3) - English Storing data between conversations, custom reprompts, custom exit, visual selection with carousel, follow-up prompts Smart Home Washer - Japanese Creating a new project, a washer on local, Adding modes, toggles, request syncs and report states Codelabs
details')) }) app.intent('Get Signin', (conv, params, signin) => { if (signin.status === 'OK') { const payload = conv.user.profile.payload conv.ask(`I got your account details, ${payload.name}. What do you want to do next?`) } else { conv.ask(`I won't be able to save your data, but what do you want to do next?`) } })