I'm looking for a way to avoid the user to be automatically authenticated in my web app when he refreshes a page.
For example, the user connects to my web app using his Google+ account and uses the app for a while. Later, when he comes back, I want the app to ask him to click the login button again, instead of automatically recognizing him as already authenticated.
With Facebook, I'm able to set the status property to false when calling FB.init(), so that it will not automatically authenticate the user upon initialization.
Is this possible with the Google+ SDK?
Thanks in advance!