I have an application which requests that Google authorize it for basic profile and email permissions via Oauth1. If I clear all cookies and repeat the process, I am again prompted to authorize the application.
According to https://developers.google.com/accounts/docs/OAuth2Login:
If your repeat this process, you will not see the consent screen. Google remembers your consent, and simply issues a new access token to the site. If, for some reason, you'd like to reprompt the user for consent, you can add
approval_prompt=force
to the parameters in the request.
Am I being prompted because
- I'm using Oauth1 and not Oauth2?
- Some other reason (Maybe I haven't given enough information to tell why)
Note that stack overflow itself does not exhibit this behavior, so I know this should be possible.