How to quit the Incarnation Party?

I use dotnetopenid to login.

I am registering my application using the dotnetopenid provider, suppose google.

During logout, I end the user session of my application FormsAuthentication.SignOut (); but if I do not close the browser and do not log in using google, it will not ask me for the id password and land on the secure page of my application.

Also, if I try gmail.com, it will land directly on my user account without asking for an id password.

So, how can I completely exit the application and Google?

early

+3
source share
4 answers

I think you are mistaken about the Support Party and the OpenID provider. Using StackOverflow as an example, SO is a third-party, and other sites (such as Google) are the OpenID providers (s).

A third-party (such as SO) does not have the right to say when an OpenID provider (such as Google) prefers to β€œforget” the user for their own purposes.

EDIT: I was not familiar with the PAPE extension. However, if I understand correctly, this does not allow the RP to say OP, "At your end, forget this user authentication," and this is what I think I want. It simply provides the ability for an RP to request another authentication for RP purposes.

I still don’t see a way (for example) for SO to register a Google user from Gmail after SO logs out.

+2
source

It looks like you are looking for a logout function that will allow the relying party to log out the user at the same time at the same time.

DotNetOpenId does not offer this function because OpenID itself does not have this function in its specification. There is simply no way to do it right now. There has been talk in the OpenID community about how to use this feature, but so far it hasn't. If and when OpenID adds such a feature to its specification, DotNetOpenId will add support for it.

+2
source

I had the same problem. So I tried this ..... when I left my website that uses dotnetopenid, I also called the following gmail exit link https://mail.google.com/mail/?logout&hl=en . It also brought me in from gmail.

+1
source

All Articles