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: README.md
+4-4Lines changed: 4 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -14,7 +14,7 @@ You can also tweet / follow [@Microsoft365Dev](https://twitter.com/Microsoft365D
14
14
15
15
## SharePoint Framework Releases
16
16
17
-
Review all the SPFx releases here from the initial GA release in February 2017 in the docs: https://docs.microsoft.com/en-us/sharepoint/dev/spfx/roadmap
17
+
Review all the SPFx releases here from the initial GA release in February 2017 in the docs: https://docs.microsoft.com/sharepoint/dev/spfx/roadmap
18
18
19
19
## Get Started
20
20
@@ -27,14 +27,14 @@ Review all the SPFx releases here from the initial GA release in February 2017 i
27
27
28
28
*[Background and Philosophy](https://docs.microsoft.com/sharepoint/dev/spfx/sharepoint-framework-overview)
29
29
*[Design Great Web Parts](https://docs.microsoft.com/sharepoint/dev/design/design-guidance-overview)
To keep track of improvements to the Office 365 Framework, please take a look at:
35
35
36
36
*[@SharePoint](https://twitter.com/sharepoint), [@Microsoft365Dev](https://twitter.com/Microsoft365Dev) and [@m365pnp](https://twitter.com/m365pnp) on Twitter
*[How to Create Good Pull Requests](https://github.com/SharePoint/sp-dev-docs/wiki/How-to-Create-Good-Pull-Requests)
52
-
* If you are a Microsoft contributor, please review official guidance from our [internal documentation](https://review.docs.microsoft.com/en-us/help/contribute/?branch=master) for docs.microsoft.com contributors
52
+
* If you are a Microsoft contributor, please review official guidance from our [internal documentation](https://review.docs.microsoft.com/help/contribute/?branch=master) for docs.microsoft.com contributors
Copy file name to clipboardExpand all lines: docs/apis/alm-api-for-spfx-add-ins.md
+18-18Lines changed: 18 additions & 18 deletions
Original file line number
Diff line number
Diff line change
@@ -28,7 +28,7 @@ ALM APIs can be used to perform exactly the same operations that are available f
28
28
ALM APIs are supported for the tenant-scoped site collections and [site collection app catalog](../general-development/site-collection-app-catalog.md). Use the corresponding app catalog's URL to target a specific app catalog. You must first enabled a site collection app catalog before targeting it with the actions documented on this page.
29
29
30
30
> [!IMPORTANT]
31
-
> Tenant-scoped permissions which require [tenant administrative approval](https://docs.microsoft.com/sharepoint/dev/solution-guidance/how-to-provide-add-in-app-only-tenant-administrative-permissions-in-sharepoint-online) are not supported with the ALM APIs.
31
+
> Tenant-scoped permissions which require [tenant administrative permissions](../solution-guidance/how-to-provide-add-in-app-only-tenant-administrative-permissions-in-sharepoint-online.md) are not supported with the ALM APIs.
32
32
33
33
## Options for working with ALM APIs
34
34
@@ -42,12 +42,12 @@ The app catalog must be included in all HTTP requests when using the REST API as
| site collection |`https://contoso.sharepoint.com/sites/Marketing/_api/web/sitecollectionappcatalog/{command}`|
49
49
50
-
- when targeting the tenant app catalog located at **https://contoso.sharepoint.com/sites/AppCatalog**, the endpoint would be **
50
+
- when targeting the tenant app catalog located at `https://contoso.sharepoint.com/sites/AppCatalog`, the endpoint would be **
51
51
52
52
Learn more here: [SharePoint REST API](../sp-add-ins/get-to-know-the-sharepoint-rest-service.md)
53
53
@@ -57,7 +57,7 @@ The PnP CSOM implements the ALM APIs by calling the SharePoint REST API.
57
57
58
58
Before using any of the ALM APIs in PnP CSOM, you need to obtain an authenticated client context using the [Microsoft.SharePointOnline.CSOM](https://www.nuget.org/packages/Microsoft.SharePointOnline.CSOM). Then use the authenticated client context to get an instance of the PnP CSOM's **AppManager** object to call the ALM commands:
59
59
60
-
```cs
60
+
```csharp
61
61
usingMicrosoft.SharePoint.Client;
62
62
usingOfficeDevPnP.Core.ALM;
63
63
@@ -72,7 +72,7 @@ using (var context = new ClientContext(webURL)) {
72
72
73
73
In all PnP Core methods, it's assumed the request targets the tenant app catalog in the tenant you connect to using the SharePoint CSOM `ClientContext` object. you can override the scope of all commands with an optional scope argument, for example
0 commit comments