Skip to content

Instantly share code, notes, and snippets.

View drmayu7's full-sized avatar

Dr Muhammad Naufal drmayu7

View GitHub Profile
@drmayu7
drmayu7 / msgraph-upload.py
Created November 14, 2022 07:36 — forked from keathmilligan/msgraph-upload.py
Upload a small file to a SharePoint site using MS Graph and MSAL
import requests
import msal
import atexit
import os.path
import urllib.parse
TENANT_ID = '<your tenant id>'
CLIENT_ID = '<your client id>'
SHAREPOINT_HOST_NAME = 'yourcompany.sharepoint.com'
SITE_NAME = '<your site>'
@drmayu7
drmayu7 / msgraph-download.py
Created November 14, 2022 07:34 — forked from keathmilligan/msgraph-download.py
Get info about and download a file from a SharePoint site with Microsoft Graph and MSAL
import requests
import msal
import atexit
import os.path
import urllib.parse
TENANT_ID = '<your tenant id>'
CLIENT_ID = '<your application id>'
SHAREPOINT_HOST_NAME = 'yourcompany.sharepoint.com'
SITE_NAME = '<your site name>'