-
-
Notifications
You must be signed in to change notification settings - Fork 335
/
auth_app_only.py
28 lines (21 loc) · 1.3 KB
/
auth_app_only.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
"""
There are two approaches for doing app-only for SharePoint:
- Using an Azure AD application: this is the preferred method when using SharePoint Online because you can also
grant permissions to other Office 365 services (if needed) + you’ve a user interface (Azure portal) to maintain
your app principals.
- Using a SharePoint App-Only principal: this method is older and only works for SharePoint access,
but is still relevant. This method is also the recommended model when you’re still working in SharePoint
on-premises since this model works in both SharePoint on-premises as SharePoint Online.
Important:
Please safeguard the created client id/secret combination as would it be your administrator account.
Using this client id/secret one can read/update all data in your SharePoint Online environment!
The example demonstrates how to use SharePoint App-Only principal (second option)
https://learn.microsoft.com/en-us/sharepoint/dev/solution-guidance/security-apponly-azureacs
"""
from office365.sharepoint.client_context import ClientContext
from tests import test_client_id, test_client_secret, test_site_url
ctx = ClientContext(test_site_url).with_client_credentials(
test_client_id, test_client_secret
)
target_web = ctx.web.get().execute_query()
print(target_web.url)