Google Activity Account

I am developing an action on Google that requires a user to log in with my services. I was able to encode the link to the binding (from Implementing account binding )

This works great; I can complete the entire flow for user authentication using the Google Home application and my site (login, and then redirecting to google and returning tokens, everything happens inside the Google Home apn)

I already have an Android application (which uses the same tokens), so I want to be able to authenticate the user using the application (for example, scheme://author something like that)

Is there a way for an authentication flow to occur between the Google Home application and my own application instead of a website?

PS: You cannot specify api.aischeme:// on the integration screen (it should be https), but I was able to point it to a page on my server, and then redirect to scheme://and open my application. but at this moment the flow ends

+4
source share
1 answer

Currently, only web authentication flow is supported.

+4
source

Source: https://habr.com/ru/post/1663413/


All Articles