{"id":8610,"date":"2025-02-24T10:20:24","date_gmt":"2025-02-24T04:50:24","guid":{"rendered":"https:\/\/pheonixsolutions.com\/blog\/?p=8610"},"modified":"2026-09-05T09:55:51","modified_gmt":"2026-09-05T04:25:51","slug":"embedding-superset-dashboard-into-a-private-website-with-authentication-and-row-level-security-rls","status":"publish","type":"post","link":"https:\/\/pheonixsolutions.com\/blog\/embedding-superset-dashboard-into-a-private-website-with-authentication-and-row-level-security-rls\/","title":{"rendered":"How to Embed a Superset Dashboard with Authentication and RLS"},"content":{"rendered":"\n<h2 class=\"wp-block-heading\"><strong>Introduction<\/strong><\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">Apache Superset is a powerful business intelligence platform for creating interactive dashboards and visualizing data. If you want to <strong>embed a Superset dashboard<\/strong> into a private website or React application, you can use the Superset Embedded SDK along with guest-token authentication.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">In this guide, we will explain how to <strong>embed a Superset dashboard<\/strong> securely using authentication and Row-Level Security (RLS). You will learn how to enable dashboard embedding in Superset, configure CORS, generate a guest token from the backend, and display the dashboard in a React application. We will also cover a practical RLS example to restrict dashboard data based on the user.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Prerequisites<\/strong><\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">Before starting, ensure you have:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Superset installed and running<\/li>\n\n\n\n<li>A configured Superset user with embed permissions<\/li>\n\n\n\n<li>A React frontend or another web framework ready for embedding<\/li>\n<\/ul>\n\n\n\n<h2 class=\"wp-block-heading\">Implementation<\/h2>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Step 1: Enable Embedding in Superset<\/strong><\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">To embed Superset dashboards, update the Superset configuration file (superset_config.py) with the following settings:<\/p>\n\n\n\n<figure class=\"wp-block-table\"><table class=\"has-fixed-layout\"><tbody><tr><td><em># Enable the embedded Superset feature<\/em><br>FEATURE_FLAGS = {<br>&nbsp; &nbsp; &#8220;EMBEDDED_SUPERSET&#8221;: True<br>}<br><br><em># Enable Cross-Origin Resource Sharing (CORS)<\/em><br>ENABLE_CORS = True<br>CORS_OPTIONS = {<br>&nbsp; &nbsp; &#8220;supports_credentials&#8221;: True,<br>&nbsp; &nbsp; &#8220;allow_headers&#8221;: &#8220;*&#8221;,<br>&nbsp; &nbsp; &#8220;expose_headers&#8221;: &#8220;*&#8221;,<br>&nbsp; &nbsp; &#8220;resources&#8221;: &#8220;*&#8221;,<br>&nbsp; &nbsp; &#8220;origins&#8221;: [&#8220;http:\/\/localhost:3000&#8221;]&nbsp; <em># React URL or frontend URL<\/em><br>}<br><br><em># Dashboard Embedding Configuration<\/em><br>GUEST_ROLE_NAME = &#8220;Gamma&#8221;<br>GUEST_TOKEN_JWT_SECRET = &#8220;PASTE_GENERATED_SECRET_HERE&#8221;&nbsp; <em># Replace with a secure secret<\/em><br>GUEST_TOKEN_JWT_ALGO = &#8220;HS256&#8221;<br>GUEST_TOKEN_HEADER_NAME = &#8220;X-GuestToken&#8221;<br>GUEST_TOKEN_JWT_EXP_SECONDS = 300&nbsp; <em># Token expiry time set to 5 minutes<\/em><\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<p class=\"wp-block-paragraph\">This configuration enables the embedding feature, sets up CORS, and configures authentication for embedding.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Step 2: Installing Dependencies<\/strong><\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">In your React project, install the required packages:<\/p>\n\n\n\n<figure class=\"wp-block-table\"><table class=\"has-fixed-layout\"><tbody><tr><td><em># Using npm<\/em><br>npm install &#8211;save @superset-ui\/embedded-sdk axios<br><br><em># OR using Yarn<\/em><br>yarn add @superset-ui\/embedded-sdk axios<\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Step 3: Generate an Authentication Token<\/strong><\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">To authenticate and fetch the required token for embedding, we will create a function that generates the guest token. This logic should be placed in the backend, not in the frontend, for security reasons.<\/p>\n\n\n\n<figure class=\"wp-block-table\"><table class=\"has-fixed-layout\"><tbody><tr><td><strong>import<\/strong> axios <strong>from<\/strong> &#8220;axios&#8221;;<br><br><strong>const<\/strong> supersetUrl = &#8216;http:\/\/YOUR_DASHBOARD_URL_HERE&#8217;; <em>\/\/ Replace with your Superset URL<\/em><br><strong>const<\/strong> supersetApiUrl = `${supersetUrl}\/api\/v1\/security`;<br><strong>const<\/strong> dashboardId = &#8220;EMBED_ID_HERE&#8221;; <em>\/\/ Replace with actual dashboard ID<\/em><br><br><strong>const<\/strong> getToken = <strong>async<\/strong> (): Promise&lt;string | null&gt; =&gt; {<br>&nbsp; &nbsp; <strong>try<\/strong> {<br>&nbsp; &nbsp; &nbsp; &nbsp; <em>\/\/ Step 1: Authenticate and get access token<\/em><br>&nbsp; &nbsp; &nbsp; &nbsp; <strong>const<\/strong> loginBody = {<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; username: &#8220;YOUR_USERNAME_WITH_EMBED_N_DASHBOARD_PERMISSION&#8221;, <em>\/\/ Use a dedicated user with limited permissions<\/em><br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; password: &#8220;YOUR_PASSWORD_WITH_EMBED_N_DASHBOARD_PERMISSION&#8221;,<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; provider: &#8220;db&#8221;,<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; refresh: true,<br>&nbsp; &nbsp; &nbsp; &nbsp; };<br><br>&nbsp; &nbsp; &nbsp; &nbsp; <strong>const<\/strong> loginResponse = <strong>await<\/strong> axios.post(`${supersetApiUrl}\/login`, loginBody, {<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; headers: { &#8220;Content-Type&#8221;: &#8220;application\/json&#8221; },<br>&nbsp; &nbsp; &nbsp; &nbsp; });<br><br>&nbsp; &nbsp; &nbsp; &nbsp; <strong>const<\/strong> accessToken = loginResponse.data.access_token;<br>&nbsp; &nbsp; &nbsp; &nbsp; console.log(&#8220;Access Token:&#8221;, accessToken);<br><br>&nbsp; &nbsp; &nbsp; &nbsp; <em>\/\/ Step 2: Generate guest token for embedding<\/em><br>&nbsp; &nbsp; &nbsp; &nbsp; <strong>const<\/strong> guestTokenBody = {<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; resources: [{ <strong>type<\/strong>: &#8220;dashboard&#8221;, id: dashboardId }],<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; rls: [], <em>\/\/ Configure Row-Level Security if needed<\/em><br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; user: {<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; username: &#8220;report-viewer&#8221;,<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; first_name: &#8220;report-viewer&#8221;,<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; last_name: &#8220;report-viewer&#8221;,<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; },<br>&nbsp; &nbsp; &nbsp; &nbsp; };<br><br>&nbsp; &nbsp; &nbsp; &nbsp; <strong>const<\/strong> guestTokenResponse = <strong>await<\/strong> axios.post(`${supersetApiUrl}\/guest_token\/`, guestTokenBody, {<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; headers: {<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &#8220;Content-Type&#8221;: &#8220;application\/json&#8221;,<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Authorization: `Bearer ${accessToken}`,<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; },<br>&nbsp; &nbsp; &nbsp; &nbsp; });<br><br>&nbsp; &nbsp; &nbsp; &nbsp; <strong>return<\/strong> guestTokenResponse.data.token;<br>&nbsp; &nbsp; } <strong>catch<\/strong> (error) {<br>&nbsp; &nbsp; &nbsp; &nbsp; console.error(&#8220;Error fetching Superset token:&#8221;, error);<br>&nbsp; &nbsp; &nbsp; &nbsp; <strong>return<\/strong> null;<br>&nbsp; &nbsp; }<br>};<\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Step 4: Embedding the Superset Dashboard in React<\/strong><\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">Now, use the generated token to embed the Superset dashboard into your React application.<\/p>\n\n\n\n<figure class=\"wp-block-table\"><table class=\"has-fixed-layout\"><tbody><tr><td><strong>import<\/strong> React, { useEffect } from &#8220;react&#8221;;<br><strong>import<\/strong> { embedDashboard } from &#8220;@superset-ui\/embedded-sdk&#8221;;<br><strong>import<\/strong> { Divider } from &#8220;@mui\/material&#8221;;<br><strong>import<\/strong> { useTheme, useMediaQuery } from &#8220;@mui\/material&#8221;;<br><strong>import<\/strong> { useSidebar } from &#8220;.\/sidebarcontext&#8221;;<br><br><strong>const<\/strong> AdminDashboard: React.FC = () =&gt; {<br>&nbsp; &nbsp; <strong>const<\/strong> theme = useTheme();<br>&nbsp; &nbsp; <strong>const<\/strong> isMobile = useMediaQuery(theme.breakpoints.down(&#8220;sm&#8221;));<br>&nbsp; &nbsp; <strong>const<\/strong> { isOpen } = useSidebar();<br>&nbsp; &nbsp; <strong>const <\/strong>supersetUrl =<strong> <\/strong>&#8216;http:\/\/YOUR_DASHBOARD_URL_HERE&#8217; <em>\/\/ Replace with your Superset URL<\/em><br>&nbsp; &nbsp; <strong>const<\/strong> dashboardId = &#8220;EMBED_ID_HERE&#8221;; <em>\/\/ Replace with actual dashboard ID<\/em><br><br>&nbsp; &nbsp; useEffect(() =&gt; {<br>&nbsp; &nbsp; &nbsp; &nbsp; <strong>const<\/strong> embedSupersetDashboard = <strong>async<\/strong> () =&gt; {<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <strong>const<\/strong> guestToken = <strong>await<\/strong> getToken();<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <strong>if<\/strong> (!guestToken) {<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; console.error(&#8220;Failed to retrieve guest token.&#8221;);<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <strong>return<\/strong>;<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; }<br><br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <strong>const<\/strong> container = document.getElementById(&#8220;superset-container&#8221;);<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <strong>if<\/strong> (container) {<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; embedDashboard({<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; id: dashboardId,<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; supersetDomain: supersetUrl,<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; mountPoint: container, <em>\/\/ The HTML element where the dashboard will be embedded<\/em><br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; fetchGuestToken: <strong>async<\/strong> () =&gt; guestToken, <em>\/\/ Provide the generated token<\/em><br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; dashboardUiConfig: { hideTitle: <strong>true<\/strong> }, <em>\/\/ Hide dashboard title<\/em><br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; });<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; } <strong>else<\/strong> {<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; console.error(&#8220;Superset container not found&#8221;);<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; }<br>&nbsp; &nbsp; &nbsp; &nbsp; };<br><br>&nbsp; &nbsp; &nbsp; &nbsp; embedSupersetDashboard();<br>&nbsp; &nbsp; }, []);<br><br>&nbsp; &nbsp; <strong>return<\/strong> (<br>&nbsp; &nbsp; &nbsp; &nbsp; &lt;div&gt;<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; {<em>\/* Divider for mobile layout adjustments *\/<\/em>}<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; {isMobile &amp;&amp; &lt;Divider style={{ marginTop: isOpen ? &#8220;0.5rem&#8221; : &#8220;auto&#8221; }} \/&gt;}<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; {<em>\/* Container to embed Superset dashboard *\/<\/em>}<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;div style={{ display: &#8220;flex&#8221;, marginLeft: &#8220;10px&#8221;, marginTop: &#8220;5px&#8221;, backgroundColor: &#8220;#f3f3f4&#8221;, width: &#8220;100%&#8221;, height: &#8220;100vh&#8221; }}&gt;<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;div id=&#8221;superset-container&#8221; style={{ width: &#8220;100%&#8221;, height: &#8220;100%&#8221; }} \/&gt;<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;\/div&gt;<br>&nbsp; &nbsp; &nbsp; &nbsp; &lt;\/div&gt;<br>&nbsp; &nbsp; );<br>};<br><br><strong>export<\/strong> <strong>default<\/strong> AdminDashboard;<\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<h2 class=\"wp-block-heading\">Conclusion<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">Embedding a Superset dashboard allows you to display interactive business intelligence reports directly inside your website or React application. By using the Superset Embedded SDK and guest-token authentication, you can provide users with access to dashboards without exposing Superset credentials in the frontend.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Row-Level Security adds another layer of control by allowing you to restrict the data displayed to each user. By combining <strong>Superset dashboard embedding, authentication, and RLS<\/strong>, you can build a secure and user-specific dashboard experience.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">FAQ<\/h2>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>1. How do I embed a Superset dashboard in React?<\/strong><\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">Use the <code>@superset-ui\/embedded-sdk<\/code> and a secure guest token generated by your backend.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>2. How is authentication handled in Superset embedding?<\/strong><\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">Your backend authenticates with Superset and generates a guest token for the embedded dashboard.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>3. What is RLS in Superset?<\/strong><\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">Row-Level Security (RLS) restricts dashboard data based on the user&#8217;s access, such as showing only their assigned region.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Related Articles:<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\"><a href=\"https:\/\/pheonixsolutions.com\/blog\/apache-superset-managing-filter-options-and-edit-chart-permission\/\">https:\/\/pheonixsolutions.com\/blog\/apache-superset-managing-filter-options-and-edit-chart-permission\/<\/a><\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Talk to our experts<strong>:<\/strong><\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">Looking for the right technology solution for your business?. Our experts can help with\u00a0<strong>web hosting, domain registration, DevOps and cloud, software development, web applications, mobile applications, and enterprise solutions<\/strong>. Get in touch with our team <a href=\"https:\/\/pheonixsolutions.com\/contact\" target=\"_blank\" rel=\"noreferrer noopener\">here<\/a>.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Introduction Apache Superset is a powerful business intelligence platform for creating interactive dashboards and visualizing data. If you want to [&hellip;]<\/p>\n","protected":false},"author":507,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"site-sidebar-layout":"default","site-content-layout":"","ast-site-content-layout":"default","site-content-style":"default","site-sidebar-style":"default","ast-global-header-display":"","ast-banner-title-visibility":"","ast-main-header-display":"","ast-hfb-above-header-display":"","ast-hfb-below-header-display":"","ast-hfb-mobile-header-display":"","site-post-title":"","ast-breadcrumbs-content":"","ast-featured-img":"","footer-sml-layout":"","ast-disable-related-posts":"","theme-transparent-header-meta":"","adv-header-id-meta":"","stick-header-meta":"","header-above-stick-meta":"","header-main-stick-meta":"","header-below-stick-meta":"","astra-migrate-meta-layouts":"default","ast-page-background-enabled":"default","ast-page-background-meta":{"desktop":{"background-color":"var(--ast-global-color-5)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"tablet":{"background-color":"","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"mobile":{"background-color":"","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""}},"ast-content-background-meta":{"desktop":{"background-color":"var(--ast-global-color-4)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"tablet":{"background-color":"var(--ast-global-color-4)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"mobile":{"background-color":"var(--ast-global-color-4)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""}},"_jetpack_newsletter_access":"","_jetpack_dont_email_post_to_subs":false,"_jetpack_newsletter_tier_id":0,"_jetpack_memberships_contains_paywalled_content":false,"_jetpack_feature_clip_id":0,"_jetpack_memberships_contains_paid_content":false,"footnotes":"","jetpack_publicize_message":"","jetpack_publicize_feature_enabled":true,"jetpack_social_post_already_shared":false,"jetpack_social_options":{"image_generator_settings":{"template":"highway","default_image_id":0,"font":"","enabled":false},"version":2},"jetpack_post_was_ever_published":false},"categories":[1022],"tags":[1075],"class_list":["post-8610","post","type-post","status-publish","format-standard","hentry","category-web-architecture","tag-rls","psol-cat-web-architecture"],"jetpack_publicize_connections":[],"jetpack_shortlink":"https:\/\/wp.me\/phn2x7-2eS","jetpack_sharing_enabled":true,"jetpack_featured_media_url":"","_links":{"self":[{"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/posts\/8610","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/users\/507"}],"replies":[{"embeddable":true,"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/comments?post=8610"}],"version-history":[{"count":4,"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/posts\/8610\/revisions"}],"predecessor-version":[{"id":11279,"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/posts\/8610\/revisions\/11279"}],"wp:attachment":[{"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/media?parent=8610"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/categories?post=8610"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/tags?post=8610"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}