You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/embedded/development/auth.md
+27Lines changed: 27 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -37,6 +37,7 @@ SharePoint Embedded applications need to request the following Microsoft Graph p
37
37
38
38
-[FileStorageContainerType.Manage.All](/graph/permissions-reference#filestoragecontainermanageall) to allow an application to create and manage container types on the owning tenant. This permission is only needed on the owning tenant where the container type is created.
39
39
-[FileStorageContainerTypeReg.Selected](/graph/permissions-reference#filestoragecontainertyperegselected) to allow an application to register the container type on consuming tenants.
40
+
-[FileStorageContainerTypeReg.Manage.All](/graph/permissions-reference#filestoragecontainertyperegmanageall) to allow an application to manage file storage container type registrations on behalf of the signed-in user.
40
41
-[FileStorageContainer.Selected](/graph/permissions-reference#filestoragecontainerselected) to allow an application to access containers of the given container type on consuming tenants.
41
42
42
43
#### Access on behalf of a user
@@ -132,6 +133,29 @@ Specific items in a container can be shared with users via the [driveItem invite
132
133
133
134
[SharePoint Embedded Administrators](/entra/identity/role-based-access-control/permissions-reference#sharepoint-embedded-administrator) can manage all SharePoint Embedded applications created in the **owning** tenant. Additionally, any Microsoft Entra user that isn't an external identity can be assigned as an owner of a [container type](/graph/api/resources/filestoragecontainertype). Container type owners can manage that specific container type. To learn more about managing applications created in the owning tenant, see [SharePoint Embedded developer administrator](../administration/developer-admin/dev-admin.md).
134
135
136
+
##### Container type owner self-service registration
137
+
138
+
Container type owners can register their container types in tenants where the container type is local (owning tenant equals consuming tenant). This requires:
139
+
140
+
- The application has `FileStorageContainerTypeReg.Manage.All` delegated permission
141
+
- The calling user is a container type owner (appears in the permissions collection on the container type)
142
+
- The call is delegated (not app-only)
143
+
- The calling user is not a guest user
144
+
- Self-service container type registration is enabled on the tenant. This setting is enabled by default. SharePoint Embedded Administrators or Global Administrators can manage this setting using [SharePoint Online PowerShell](/powershell/module/sharepoint-online/set-spotenant):
This enables developers to register their own container types without requiring a SharePoint Embedded Administrator to perform the registration on their behalf.
158
+
135
159
### Exceptional access patterns
136
160
137
161
Currently, there are two types of operations with exceptional access patterns:
@@ -183,4 +207,7 @@ Here are some actions you can take next:
183
207
- Optionally add: `FileStorageContainer.Selected` (type: `Role`, ID: `40dc41bc-0f7e-42ff-89bd-d9516947e474`) to access the container on _consuming_ tenants without a user
184
208
1.[Grant admin consent](/entra/identity-platform/v2-admin-consent) to your application on a _consuming_ tenant (which can be the same as the owning tenant).
185
209
1.[Register the container type](../getting-started/register-api-documentation.md) on the _consuming_ tenant.
210
+
1. Remove `FileStorageContainerTypeReg.Selected` from your application's manifest after registration is complete.
211
+
> [!NOTE]
212
+
> After registering the container type, you should remove the `FileStorageContainerTypeReg.Selected` permission from your application's manifest. This permission is only needed during registration setup. Keeping it after registration unnecessarily increases your application's permission surface.
186
213
1.[Create a container](/graph/api/filestoragecontainer-post) on the _consuming_ tenant
0 commit comments