From b8632a434db56b978eca3baabc86c1d98f898f2a Mon Sep 17 00:00:00 2001 From: sanex3339 Date: Tue, 3 Feb 2026 15:22:26 +0400 Subject: [PATCH 1/3] Update readme --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 77a4df5..6294ef5 100644 --- a/README.md +++ b/README.md @@ -96,7 +96,7 @@ const token = jwt.sign(payload, MB_EMBEDDING_SECRET_KEY); ### SSO Embed (JWT Authentication) -SSO embeds authenticate users via JWT, creating a full user session in Metabase. The server returns a JWT containing user information when the embed.js client requests authentication. See the [authentication docs](https://www.metabase.com/docs/latest/embedding/authentication) for more details. +SSO embeds authenticate users via JWT, creating a full user session in Metabase. The server returns a JWT containing user information when the embed.js client requests authentication. See the [authentication docs](https://www.metabase.com/docs/latest/embedding/authentication) for more details. This method enables end users to drill-through on charts, build their own visualizations, and ask questions to Metabase’s AI service. See a complete list of differences between SSO and guest embeds [in this doc](https://www.metabase.com/docs/latest/embedding/introduction#comparison-of-embedding-types). ```javascript // Server returns user JWT at /auth/sso endpoint From 871f7747c534941ebebdb0c29ca413d62dcae8a3 Mon Sep 17 00:00:00 2001 From: sanex3339 Date: Tue, 3 Feb 2026 20:37:10 +0400 Subject: [PATCH 2/3] Update readme #2 --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 6294ef5..9ecd55f 100644 --- a/README.md +++ b/README.md @@ -36,7 +36,7 @@ npm run docker:up ### Running locally with an existing Metabase instance -Before running, ensure your Metabase instance is configured following the [guest embedding setup guide](https://www.metabase.com/docs/latest/embedding/guest-embedding) and [SSO authentication guide](https://www.metabase.com/docs/latest/embedding/authentication). +Before running, ensure your Metabase instance is configured following the [guest embedding setup guide](https://www.metabase.com/docs/latest/embedding/guest-embedding) and [SSO authentication guide](https://www.metabase.com/docs/latest/embedding/authentication). You can leave the [JWT Identity Provider](https://www.metabase.com/docs/latest/people-and-groups/authenticating-with-jwt#set-up-jwt-authentication) URI blank or set it to `http://localhost:3100/auth/sso`. 1. Copy the environment file: @@ -89,7 +89,7 @@ const token = jwt.sign(payload, MB_EMBEDDING_SECRET_KEY); ``` @@ -120,8 +120,8 @@ res.json({ jwt: ssoToken }); ``` From 6a228d59bbcd59441533b439cf5b65f4bd5b3fdf Mon Sep 17 00:00:00 2001 From: sanex3339 Date: Wed, 4 Feb 2026 19:50:18 +0400 Subject: [PATCH 3/3] Update readme #3 --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 9ecd55f..8f1be3a 100644 --- a/README.md +++ b/README.md @@ -36,7 +36,7 @@ npm run docker:up ### Running locally with an existing Metabase instance -Before running, ensure your Metabase instance is configured following the [guest embedding setup guide](https://www.metabase.com/docs/latest/embedding/guest-embedding) and [SSO authentication guide](https://www.metabase.com/docs/latest/embedding/authentication). You can leave the [JWT Identity Provider](https://www.metabase.com/docs/latest/people-and-groups/authenticating-with-jwt#set-up-jwt-authentication) URI blank or set it to `http://localhost:3100/auth/sso`. +Before running, ensure your Metabase instance is configured following the [guest embedding setup guide](https://www.metabase.com/docs/latest/embedding/guest-embedding) and [SSO authentication guide](https://www.metabase.com/docs/latest/embedding/authentication). 1. Copy the environment file: