{"id":2920,"date":"2024-02-12T22:00:06","date_gmt":"2024-02-13T06:00:06","guid":{"rendered":"https:\/\/www.microsoft.com\/en-us\/microsoft-copilot\/blog\/copilot-studio\/deploy-a-custom-copilot-to-sharepoint-with-a-seamless-single-sign-on-experience\/"},"modified":"2026-03-06T11:32:57","modified_gmt":"2026-03-06T19:32:57","slug":"deploy-a-custom-copilot-to-sharepoint-with-a-seamless-single-sign-on-experience","status":"publish","type":"copilot","link":"https:\/\/www.microsoft.com\/en-us\/microsoft-copilot\/blog\/copilot-studio\/deploy-a-custom-copilot-to-sharepoint-with-a-seamless-single-sign-on-experience\/","title":{"rendered":"Deploy a custom copilot to SharePoint, with a seamless single sign-on experience"},"content":{"rendered":"\n<p>We are excited to share the recent addition to the Copilot Studio Samples repository \u2013 a <a href=\"https:\/\/aka.ms\/CopilotStudioSamples\/SharePointSSO\">code sample<\/a> demonstrating how to publish a custom copilot to a SharePoint site, with a seamless single sign-on experience.<\/p>\n\n\n\n<p>Many organizations use SharePoint to power their employee-facing websites, delivering experiences that streamline the way employees interact with the organization and with each other. SharePoint is also the content management platform behind OneDrive, Teams and other Microsoft 365 services.<\/p>\n\n\n\n<p>In 2023, we announced Generative AI features in Microsoft Copilot Studio that <a href=\"https:\/\/powervirtualagents.microsoft.com\/en-us\/blog\/reinvent-your-ai-assistants-with-generative-answers-actions-and-more-in-microsoft-power-virtual-agents\/\">transform the traditional model of bot development<\/a> and allow makers to build copilots that respond to questions, simply by pointing the copilot at knowledge sources like public websites or content stored in SharePoint and OneDrive. Given all the content that is already managed in SharePoint, the Generative Answers capability makes it easier than ever to create an employee-facing, conversational AI experience, that can answer questions on topics like personal time-off, perks and benefits or company policies.<\/p>\n\n\n\n<figure class=\"wp-block-image aligncenter\"><img loading=\"lazy\" decoding=\"async\" width=\"1080\" height=\"608\" src=\"https:\/\/www.microsoft.com\/en-us\/microsoft-copilot\/blog\/wp-content\/uploads\/2023\/12\/genaicanvas.gif\" alt=\"Generative Answers in the Copilot Studio authoring canvas\" class=\"wp-image-2924\" \/><\/figure>\n\n\n\n<div class=\"wp-block-image\"><\/div>\n\n\n\n<p>Copilots created with Copilot Studio can be easily published to Microsoft Teams and other channels. However, many use cases would benefit from copilots deployed directly on SharePoint sites, allowing a conversational experience grounded in the sites\u2019 pages and documents. For example, think about a SharePoint site consolidating HR related information, with an embedded copilot answering employee questions and referencing the relevant HR policies.<\/p>\n\n\n\n<p>This can be achieved using the new code sample: the component included in the sample allows copilots created with Microsoft Copilot Studio to be wrapped and published to SharePoint sites as a floating widget. The component also supports SSO, so users would do not have to provide their credentials or use the <a href=\"https:\/\/learn.microsoft.com\/en-us\/microsoft-copilot-studio\/configuration-authentication-azure-ad#test-your-bot\">validation code<\/a> required by the standard copilot canvas.<\/p>\n\n\n\n<figure class=\"wp-block-image\"><img loading=\"lazy\" decoding=\"async\" width=\"1080\" height=\"608\" src=\"https:\/\/www.microsoft.com\/en-us\/microsoft-copilot\/blog\/wp-content\/uploads\/2023\/12\/SharePointSSOHR-657496ab99bed.gif\" alt=\"The SharePoint Component\" class=\"wp-image-2927\" \/><\/figure>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"how-does-the-new-code-sample-work\">How does the new code sample work?<\/h3>\n\n\n\n<p>This sample includes a SharePoint Framework Extension (SPFx) component which acts as a wrapper for copilots created with Microsoft Copilot Studio.<\/p>\n\n\n\n<p>A user accessing a SharePoint site has already signed-in using their Microsoft Entra ID credentials. The SPFx component, embedded natively in SharePoint sites, acquires a token for the user, and exchanges the token with the copilot, allowing the copilot to access protected data sources, like SharePoint and OneDrive, on the user\u2019s behalf.<\/p>\n\n\n<figure class=\"wp-block-image\"><img decoding=\"async\" src=\"https:\/\/www.microsoft.com\/en-us\/microsoft-copilot\/blog\/wp-content\/uploads\/2023\/12\/spfx_diagram.webp\" alt=\"High-level architecture design\" class=\"wp-image-2936 webp-format\" data-orig-src=\"https:\/\/www.microsoft.com\/en-us\/microsoft-copilot\/blog\/wp-content\/uploads\/2023\/12\/spfx_diagram.webp\"><\/figure>\n\n\n\n<div class=\"wp-block-image\"><\/div>\n\n\n\n<p>For example, a user with access to a SharePoint site dedicated to Perks and Benefits will be able to interact with an embedded copilot, by asking questions like &#8220;do we get reimbursed for professional training?&#8221;. The copilot will answer the user\u2019s questions based on the site\u2019s pages and documents, but only those to which the user already has access. Most of this flow is made possible by the <a href=\"https:\/\/learn.microsoft.com\/en-us\/microsoft-copilot-studio\/nlu-boost-node\">Generative Answers<\/a> capability, with the SPFx component handling single sign-on, so users do not have to enter credentials or a validation code.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"how-can-i-deploy-the-component-on-my-sharepoint-site\">How can I deploy the component on my SharePoint site?<\/h3>\n\n\n\n<p>Creating a wrapper for Copilot Studio that can be deployed in SharePoint, with SSO support, can be somewhat of an involved process. It requires an understanding of the SPFx framework, as well as setting up the required permissions in Azure.<\/p>\n\n\n\n<p>Luckily, the code sample comes with a <a href=\"https:\/\/github.com\/microsoft\/CopilotStudioSamples\/blob\/master\/SharePointSSOComponent\/SETUP.md\">step-by-step guide<\/a>, with detailed instructions on how to:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Set up the app registration configurations required for SSO.<\/li>\n\n\n\n<li>Set up a Generative Answers node for your copilot, over a SharePoint or OneDrive data source.<\/li>\n\n\n\n<li>Build the SPFx component from scratch and bind it to your copilot.<\/li>\n\n\n\n<li>Upload the component to the tenant app catalog and deploy on a site.<\/li>\n<\/ul>\n\n\n\n<p><strong>Suggest feedback or report issues related to the sample <\/strong><a href=\"https:\/\/github.com\/microsoft\/CopilotStudioSamples\/issues\/new?assignees=adilei&amp;labels=&amp;projects=&amp;template=sharepoint-sso-component.md&amp;title=Issue%3A+SharePoint+SSO+Component\"><strong>here<\/strong><\/a><\/p>\n","protected":false},"excerpt":{"rendered":"<p>This sample demonstrates how a copilot created with Microsoft Copilot Studio can be published to a SharePoint site, with seamless SSO support. Coupled with the Generative Answers capability, it provides a secure conversational experience, fully embedded in SharePoint.<\/p>\n","protected":false},"author":75,"featured_media":2841,"template":"","cs-content-type":[933],"cs-topic":[939,951],"coauthors":[677],"class_list":["post-2920","copilot","type-copilot","status-publish","has-post-thumbnail","hentry","cs-content-type-tips-and-guides","cs-topic-agent-governance","cs-topic-developer-tools"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.2 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Deploy a custom copilot to SharePoint, with a seamless single sign-on experience | Microsoft Copilot Blog<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.microsoft.com\/en-us\/microsoft-copilot\/blog\/copilot-studio\/deploy-a-custom-copilot-to-sharepoint-with-a-seamless-single-sign-on-experience\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Deploy a custom copilot to SharePoint, with a seamless single sign-on experience | Microsoft Copilot Blog\" \/>\n<meta property=\"og:description\" content=\"This sample demonstrates how a copilot created with Microsoft Copilot Studio can be published to a SharePoint site, with seamless SSO support. Coupled with the Generative Answers capability, it provides a secure conversational experience, fully embedded in SharePoint.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.microsoft.com\/en-us\/microsoft-copilot\/blog\/copilot-studio\/deploy-a-custom-copilot-to-sharepoint-with-a-seamless-single-sign-on-experience\/\" \/>\n<meta property=\"og:site_name\" content=\"Microsoft Copilot Blog\" \/>\n<meta property=\"article:modified_time\" content=\"2026-03-06T19:32:57+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.microsoft.com\/en-us\/microsoft-copilot\/blog\/wp-content\/uploads\/2023\/11\/PVA_Ignite_Thumb_01-1024x576.png\" \/>\n\t<meta property=\"og:image:width\" content=\"1024\" \/>\n\t<meta property=\"og:image:height\" content=\"576\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data1\" content=\"4 minutes\" \/>\n\t<meta name=\"twitter:label2\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data2\" content=\"Adi Leibowitz\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/www.microsoft.com\/en-us\/microsoft-copilot\/blog\/copilot-studio\/deploy-a-custom-copilot-to-sharepoint-with-a-seamless-single-sign-on-experience\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.microsoft.com\/en-us\/microsoft-copilot\/blog\/copilot-studio\/deploy-a-custom-copilot-to-sharepoint-with-a-seamless-single-sign-on-experience\/\"},\"author\":[{\"@id\":\"https:\/\/www.microsoft.com\/en-us\/microsoft-copilot\/blog\/author\/adi-leibowitz\/\",\"@type\":\"Person\",\"@name\":\"Adi Leibowitz\"}],\"headline\":\"Deploy a custom copilot to SharePoint, with a seamless single sign-on experience\",\"datePublished\":\"2024-02-13T06:00:06+00:00\",\"dateModified\":\"2026-03-06T19:32:57+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.microsoft.com\/en-us\/microsoft-copilot\/blog\/copilot-studio\/deploy-a-custom-copilot-to-sharepoint-with-a-seamless-single-sign-on-experience\/\"},\"wordCount\":592,\"publisher\":{\"@id\":\"https:\/\/www.microsoft.com\/en-us\/microsoft-copilot\/blog\/#organization\"},\"image\":{\"@id\":\"https:\/\/www.microsoft.com\/en-us\/microsoft-copilot\/blog\/copilot-studio\/deploy-a-custom-copilot-to-sharepoint-with-a-seamless-single-sign-on-experience\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.microsoft.com\/en-us\/microsoft-copilot\/blog\/wp-content\/uploads\/2023\/11\/PVA_Ignite_Thumb_01.webp\",\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.microsoft.com\/en-us\/microsoft-copilot\/blog\/copilot-studio\/deploy-a-custom-copilot-to-sharepoint-with-a-seamless-single-sign-on-experience\/\",\"url\":\"https:\/\/www.microsoft.com\/en-us\/microsoft-copilot\/blog\/copilot-studio\/deploy-a-custom-copilot-to-sharepoint-with-a-seamless-single-sign-on-experience\/\",\"name\":\"Deploy a custom copilot to SharePoint, with a seamless single sign-on experience | Microsoft Copilot Blog\",\"isPartOf\":{\"@id\":\"https:\/\/www.microsoft.com\/en-us\/microsoft-copilot\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/www.microsoft.com\/en-us\/microsoft-copilot\/blog\/copilot-studio\/deploy-a-custom-copilot-to-sharepoint-with-a-seamless-single-sign-on-experience\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/www.microsoft.com\/en-us\/microsoft-copilot\/blog\/copilot-studio\/deploy-a-custom-copilot-to-sharepoint-with-a-seamless-single-sign-on-experience\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.microsoft.com\/en-us\/microsoft-copilot\/blog\/wp-content\/uploads\/2023\/11\/PVA_Ignite_Thumb_01.webp\",\"datePublished\":\"2024-02-13T06:00:06+00:00\",\"dateModified\":\"2026-03-06T19:32:57+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/www.microsoft.com\/en-us\/microsoft-copilot\/blog\/copilot-studio\/deploy-a-custom-copilot-to-sharepoint-with-a-seamless-single-sign-on-experience\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.microsoft.com\/en-us\/microsoft-copilot\/blog\/copilot-studio\/deploy-a-custom-copilot-to-sharepoint-with-a-seamless-single-sign-on-experience\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.microsoft.com\/en-us\/microsoft-copilot\/blog\/copilot-studio\/deploy-a-custom-copilot-to-sharepoint-with-a-seamless-single-sign-on-experience\/#primaryimage\",\"url\":\"https:\/\/www.microsoft.com\/en-us\/microsoft-copilot\/blog\/wp-content\/uploads\/2023\/11\/PVA_Ignite_Thumb_01.webp\",\"contentUrl\":\"https:\/\/www.microsoft.com\/en-us\/microsoft-copilot\/blog\/wp-content\/uploads\/2023\/11\/PVA_Ignite_Thumb_01.webp\",\"width\":1920,\"height\":1080},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.microsoft.com\/en-us\/microsoft-copilot\/blog\/copilot-studio\/deploy-a-custom-copilot-to-sharepoint-with-a-seamless-single-sign-on-experience\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.microsoft.com\/en-us\/microsoft-copilot\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Copilot Studio\",\"item\":\"https:\/\/www.microsoft.com\/en-us\/microsoft-copilot\/blog\/copilot-studio\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"Deploy a custom copilot to SharePoint, with a seamless single sign-on experience\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.microsoft.com\/en-us\/microsoft-copilot\/blog\/#website\",\"url\":\"https:\/\/www.microsoft.com\/en-us\/microsoft-copilot\/blog\/\",\"name\":\"Microsoft Copilot Blog\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\/\/www.microsoft.com\/en-us\/microsoft-copilot\/blog\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.microsoft.com\/en-us\/microsoft-copilot\/blog\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/www.microsoft.com\/en-us\/microsoft-copilot\/blog\/#organization\",\"name\":\"Microsoft Copilot Blog\",\"url\":\"https:\/\/www.microsoft.com\/en-us\/microsoft-copilot\/blog\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.microsoft.com\/en-us\/microsoft-copilot\/blog\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/www.microsoft.com\/en-us\/microsoft-copilot\/blog\/wp-content\/uploads\/2024\/05\/cropped-microsoft_logo_element.webp\",\"contentUrl\":\"https:\/\/www.microsoft.com\/en-us\/microsoft-copilot\/blog\/wp-content\/uploads\/2024\/05\/cropped-microsoft_logo_element.webp\",\"width\":512,\"height\":512,\"caption\":\"Microsoft Copilot Blog\"},\"image\":{\"@id\":\"https:\/\/www.microsoft.com\/en-us\/microsoft-copilot\/blog\/#\/schema\/logo\/image\/\"}},{\"@type\":\"Person\",\"@id\":\"https:\/\/www.microsoft.com\/en-us\/microsoft-copilot\/blog\/#\/schema\/person\/7731785ec8288934a4386e7dab9fdd44\",\"name\":\"Adi Leibowitz\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/secure.gravatar.com\/avatar\/77209e10274b2d3459618bceaf9b00ca8f25aa03a66a036c67b96e4e915848d6?s=96&d=microsoft&r=g8fb6198f7dbfdceaca370ebebe5f17db\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/77209e10274b2d3459618bceaf9b00ca8f25aa03a66a036c67b96e4e915848d6?s=96&d=microsoft&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/77209e10274b2d3459618bceaf9b00ca8f25aa03a66a036c67b96e4e915848d6?s=96&d=microsoft&r=g\",\"caption\":\"Adi Leibowitz\"},\"url\":\"https:\/\/www.microsoft.com\/en-us\/microsoft-copilot\/blog\/author\/adileibowitzmicrosoft-com\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Deploy a custom copilot to SharePoint, with a seamless single sign-on experience | Microsoft Copilot Blog","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/www.microsoft.com\/en-us\/microsoft-copilot\/blog\/copilot-studio\/deploy-a-custom-copilot-to-sharepoint-with-a-seamless-single-sign-on-experience\/","og_locale":"en_US","og_type":"article","og_title":"Deploy a custom copilot to SharePoint, with a seamless single sign-on experience | Microsoft Copilot Blog","og_description":"This sample demonstrates how a copilot created with Microsoft Copilot Studio can be published to a SharePoint site, with seamless SSO support. Coupled with the Generative Answers capability, it provides a secure conversational experience, fully embedded in SharePoint.","og_url":"https:\/\/www.microsoft.com\/en-us\/microsoft-copilot\/blog\/copilot-studio\/deploy-a-custom-copilot-to-sharepoint-with-a-seamless-single-sign-on-experience\/","og_site_name":"Microsoft Copilot Blog","article_modified_time":"2026-03-06T19:32:57+00:00","og_image":[{"width":1024,"height":576,"url":"https:\/\/www.microsoft.com\/en-us\/microsoft-copilot\/blog\/wp-content\/uploads\/2023\/11\/PVA_Ignite_Thumb_01-1024x576.png","type":"image\/png"}],"twitter_card":"summary_large_image","twitter_misc":{"Est. reading time":"4 minutes","Written by":"Adi Leibowitz"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.microsoft.com\/en-us\/microsoft-copilot\/blog\/copilot-studio\/deploy-a-custom-copilot-to-sharepoint-with-a-seamless-single-sign-on-experience\/#article","isPartOf":{"@id":"https:\/\/www.microsoft.com\/en-us\/microsoft-copilot\/blog\/copilot-studio\/deploy-a-custom-copilot-to-sharepoint-with-a-seamless-single-sign-on-experience\/"},"author":[{"@id":"https:\/\/www.microsoft.com\/en-us\/microsoft-copilot\/blog\/author\/adi-leibowitz\/","@type":"Person","@name":"Adi Leibowitz"}],"headline":"Deploy a custom copilot to SharePoint, with a seamless single sign-on experience","datePublished":"2024-02-13T06:00:06+00:00","dateModified":"2026-03-06T19:32:57+00:00","mainEntityOfPage":{"@id":"https:\/\/www.microsoft.com\/en-us\/microsoft-copilot\/blog\/copilot-studio\/deploy-a-custom-copilot-to-sharepoint-with-a-seamless-single-sign-on-experience\/"},"wordCount":592,"publisher":{"@id":"https:\/\/www.microsoft.com\/en-us\/microsoft-copilot\/blog\/#organization"},"image":{"@id":"https:\/\/www.microsoft.com\/en-us\/microsoft-copilot\/blog\/copilot-studio\/deploy-a-custom-copilot-to-sharepoint-with-a-seamless-single-sign-on-experience\/#primaryimage"},"thumbnailUrl":"https:\/\/www.microsoft.com\/en-us\/microsoft-copilot\/blog\/wp-content\/uploads\/2023\/11\/PVA_Ignite_Thumb_01.webp","inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/www.microsoft.com\/en-us\/microsoft-copilot\/blog\/copilot-studio\/deploy-a-custom-copilot-to-sharepoint-with-a-seamless-single-sign-on-experience\/","url":"https:\/\/www.microsoft.com\/en-us\/microsoft-copilot\/blog\/copilot-studio\/deploy-a-custom-copilot-to-sharepoint-with-a-seamless-single-sign-on-experience\/","name":"Deploy a custom copilot to SharePoint, with a seamless single sign-on experience | Microsoft Copilot Blog","isPartOf":{"@id":"https:\/\/www.microsoft.com\/en-us\/microsoft-copilot\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.microsoft.com\/en-us\/microsoft-copilot\/blog\/copilot-studio\/deploy-a-custom-copilot-to-sharepoint-with-a-seamless-single-sign-on-experience\/#primaryimage"},"image":{"@id":"https:\/\/www.microsoft.com\/en-us\/microsoft-copilot\/blog\/copilot-studio\/deploy-a-custom-copilot-to-sharepoint-with-a-seamless-single-sign-on-experience\/#primaryimage"},"thumbnailUrl":"https:\/\/www.microsoft.com\/en-us\/microsoft-copilot\/blog\/wp-content\/uploads\/2023\/11\/PVA_Ignite_Thumb_01.webp","datePublished":"2024-02-13T06:00:06+00:00","dateModified":"2026-03-06T19:32:57+00:00","breadcrumb":{"@id":"https:\/\/www.microsoft.com\/en-us\/microsoft-copilot\/blog\/copilot-studio\/deploy-a-custom-copilot-to-sharepoint-with-a-seamless-single-sign-on-experience\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.microsoft.com\/en-us\/microsoft-copilot\/blog\/copilot-studio\/deploy-a-custom-copilot-to-sharepoint-with-a-seamless-single-sign-on-experience\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.microsoft.com\/en-us\/microsoft-copilot\/blog\/copilot-studio\/deploy-a-custom-copilot-to-sharepoint-with-a-seamless-single-sign-on-experience\/#primaryimage","url":"https:\/\/www.microsoft.com\/en-us\/microsoft-copilot\/blog\/wp-content\/uploads\/2023\/11\/PVA_Ignite_Thumb_01.webp","contentUrl":"https:\/\/www.microsoft.com\/en-us\/microsoft-copilot\/blog\/wp-content\/uploads\/2023\/11\/PVA_Ignite_Thumb_01.webp","width":1920,"height":1080},{"@type":"BreadcrumbList","@id":"https:\/\/www.microsoft.com\/en-us\/microsoft-copilot\/blog\/copilot-studio\/deploy-a-custom-copilot-to-sharepoint-with-a-seamless-single-sign-on-experience\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.microsoft.com\/en-us\/microsoft-copilot\/blog\/"},{"@type":"ListItem","position":2,"name":"Copilot Studio","item":"https:\/\/www.microsoft.com\/en-us\/microsoft-copilot\/blog\/copilot-studio\/"},{"@type":"ListItem","position":3,"name":"Deploy a custom copilot to SharePoint, with a seamless single sign-on experience"}]},{"@type":"WebSite","@id":"https:\/\/www.microsoft.com\/en-us\/microsoft-copilot\/blog\/#website","url":"https:\/\/www.microsoft.com\/en-us\/microsoft-copilot\/blog\/","name":"Microsoft Copilot Blog","description":"","publisher":{"@id":"https:\/\/www.microsoft.com\/en-us\/microsoft-copilot\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.microsoft.com\/en-us\/microsoft-copilot\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.microsoft.com\/en-us\/microsoft-copilot\/blog\/#organization","name":"Microsoft Copilot Blog","url":"https:\/\/www.microsoft.com\/en-us\/microsoft-copilot\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.microsoft.com\/en-us\/microsoft-copilot\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/www.microsoft.com\/en-us\/microsoft-copilot\/blog\/wp-content\/uploads\/2024\/05\/cropped-microsoft_logo_element.webp","contentUrl":"https:\/\/www.microsoft.com\/en-us\/microsoft-copilot\/blog\/wp-content\/uploads\/2024\/05\/cropped-microsoft_logo_element.webp","width":512,"height":512,"caption":"Microsoft Copilot Blog"},"image":{"@id":"https:\/\/www.microsoft.com\/en-us\/microsoft-copilot\/blog\/#\/schema\/logo\/image\/"}},{"@type":"Person","@id":"https:\/\/www.microsoft.com\/en-us\/microsoft-copilot\/blog\/#\/schema\/person\/7731785ec8288934a4386e7dab9fdd44","name":"Adi Leibowitz","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/77209e10274b2d3459618bceaf9b00ca8f25aa03a66a036c67b96e4e915848d6?s=96&d=microsoft&r=g8fb6198f7dbfdceaca370ebebe5f17db","url":"https:\/\/secure.gravatar.com\/avatar\/77209e10274b2d3459618bceaf9b00ca8f25aa03a66a036c67b96e4e915848d6?s=96&d=microsoft&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/77209e10274b2d3459618bceaf9b00ca8f25aa03a66a036c67b96e4e915848d6?s=96&d=microsoft&r=g","caption":"Adi Leibowitz"},"url":"https:\/\/www.microsoft.com\/en-us\/microsoft-copilot\/blog\/author\/adileibowitzmicrosoft-com\/"}]}},"msxcm_display_generated_audio":false,"_links":{"self":[{"href":"https:\/\/www.microsoft.com\/en-us\/microsoft-copilot\/blog\/wp-json\/wp\/v2\/copilot\/2920","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.microsoft.com\/en-us\/microsoft-copilot\/blog\/wp-json\/wp\/v2\/copilot"}],"about":[{"href":"https:\/\/www.microsoft.com\/en-us\/microsoft-copilot\/blog\/wp-json\/wp\/v2\/types\/copilot"}],"author":[{"embeddable":true,"href":"https:\/\/www.microsoft.com\/en-us\/microsoft-copilot\/blog\/wp-json\/wp\/v2\/users\/75"}],"version-history":[{"count":1,"href":"https:\/\/www.microsoft.com\/en-us\/microsoft-copilot\/blog\/wp-json\/wp\/v2\/copilot\/2920\/revisions"}],"predecessor-version":[{"id":7344,"href":"https:\/\/www.microsoft.com\/en-us\/microsoft-copilot\/blog\/wp-json\/wp\/v2\/copilot\/2920\/revisions\/7344"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.microsoft.com\/en-us\/microsoft-copilot\/blog\/wp-json\/wp\/v2\/media\/2841"}],"wp:attachment":[{"href":"https:\/\/www.microsoft.com\/en-us\/microsoft-copilot\/blog\/wp-json\/wp\/v2\/media?parent=2920"}],"wp:term":[{"taxonomy":"cs-content-type","embeddable":true,"href":"https:\/\/www.microsoft.com\/en-us\/microsoft-copilot\/blog\/wp-json\/wp\/v2\/cs-content-type?post=2920"},{"taxonomy":"cs-topic","embeddable":true,"href":"https:\/\/www.microsoft.com\/en-us\/microsoft-copilot\/blog\/wp-json\/wp\/v2\/cs-topic?post=2920"},{"taxonomy":"author","embeddable":true,"href":"https:\/\/www.microsoft.com\/en-us\/microsoft-copilot\/blog\/wp-json\/wp\/v2\/coauthors?post=2920"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}