Search code examples
identityserver4actions-on-google

Logout Redirect Uri für Action on Google?


I´m developing a action for Google, I´m using Visual Studio C' with Identity Server 4. I followed the instructions from Gooogle to create my client but now I have a question, I´ve been testing my action for a while with my client and it works very well.

 new Client
            {
               ClientId = ApiDefinitions.ClientIdGoogle,
               RedirectUris = {  "https://oauth-redirect.googleusercontent.com/r/projectId"},
               PostLogoutRedirectUris = {},
...(cut for readable code)

I was wondering if I am missing something in PostLogoutRedirectUris.. Does anyone knows what to give there?


Solution

  • For Actions on Google there isn't a logout URI as part of the OAuth flow. People are able to revoke the account linking and your auth token in the Assistant settings.