Coder Social home page Coder Social logo

Comments (2)

damienbod avatar damienbod commented on July 21, 2024

google oidc does not support logout...

Use a different token service for this use case, for example you could put a identityserver4 in between.

Greetings Damien

from angular-auth-oidc-sample-google-openid.

Asifislam110 avatar Asifislam110 commented on July 21, 2024

@damienbod thank you for your reply.
I am using identityserver3 with below client setting

CLIENT 1:
new Client
{
Enabled = true,
ClientName = "Client1",
ClientId = "Client1",
AccessTokenType = AccessTokenType.Reference,
Flow = Flows.Implicit,
ClientSecrets = new List { new Secret { Value="Client1"} },
RequireConsent = false,

            RedirectUris = new List<string>
            {
                "http://localhost:28650/"
            },
            AllowedCorsOrigins = new List<string>
            {
               "http://localhost:28650/"
            },
            // Valid URLs after logging out
            PostLogoutRedirectUris = new List<string>
            {
                "http://localhost:28650/"
            },

            AllowAccessToAllScopes = true,
            AccessTokenLifetime =  3600
        }

CLIENT 2 :

			new Client
        {
            Enabled = true,
            ClientName = "Client2",
            ClientId = "Client2",
             AccessTokenType = AccessTokenType.Reference,
            Flow = Flows.Implicit,
            ClientSecrets = new List<Secret> { new Secret { Value="Client2"} },
            RequireConsent = false,


            RedirectUris = new List<string>
            {
                "localhost:28550"
            },
            AllowedCorsOrigins = new List<string>
            {
               "localhost:28550"
            },
            // Valid URLs after logging out
            PostLogoutRedirectUris = new List<string>
            {
                "localhost:28550"
            },

            AllowAccessToAllScopes = true,
            AccessTokenLifetime =3600
        }

when i logout from client 1 it sucessfully logout and redirect to login, but when i move to client 2 it can still access/use client 2 application.
can you please guide me how to resolve this issue.
Thanks,

from angular-auth-oidc-sample-google-openid.

Related Issues (3)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.