pxt-microbit
pxt-microbit copied to clipboard
Zero-prompt SSO not working for Google accounts
When we pass prompt="none" to google oauth, we get back the error:
{
"error":"access_denied"
}
At this point we fallback to interactive login, so it is non-fatal, but we should get this working (if possible).
I tried various url parameter configurations, including:
- Removed
access_type:offline, so that we don't request a refresh token - Explicitly include
openidscope - Include
include_granted_scopesparam
No luck. All result in consent prompt the next time the user signs in.
I suspect that submitting our google app for verification would improve this. We're currently an unverified app.