A look at what keeps you signed in across visits, without a login screen every time.
Loading…
Nothing has happened yet.
prompt=none requestWhat actually keeps you signed in above is this app's own persisted session — closer to what the SDK's background token refresh does than to the OIDC spec's silent-authentication mechanism. That spec mechanism is a real request you can send yourself: a top-level redirect to Descope's /authorize endpoint with prompt=none, asking Descope directly whether it considers you signed in, independent of anything stored in this app.
Expect this to say error=login_required even right after logging in above — confirmed by testing against a live project, not assumed. Two things get in the way of a third-party silent check on Descope as currently configured, and both are real browser security behavior, not bugs in this demo:
X-Frame-Options: SAMEORIGIN, so Chrome refuses to display them in a cross-origin iframe at all.SameSite=Strict — which means the browser never attaches it to a request that originates from a different site, including a redirect this app initiates. It only gets sent once you're already on api.descope.com, which is exactly the case a cross-app silent check needs to work.Both are why the signed-in state above comes from this app's own persisted session instead — it's the mechanism that actually works, confirmed live.