For the complete documentation index, see llms.txt. This page is also available as Markdown.

🔩Installation

Let's install oidc-spa in your project:

npm install --save oidc-spa
yarn add oidc-spa
pnpm add oidc-spa
bun add oidc-spa

Create the following file in your public directory:

public/silent-sso.html
<html>
    <body>
        <script>
            parent.postMessage(location.href, location.origin);
        </script>
    </body>
</html>

Last updated

Was this helpful?