Uploads a file to sharepoint using the REST API and adal
module for the
authentication using a certificate.
Be careful the name of the file you want to upload. Sharepoint may not accept special chars.
$ virtualenv env # Creates a virtualenv in the env folder
$ source env/bin/activate # Load the virtualenv
$ pip3 install -r requirements.txt # Install dependencies
$ python3 rest-upload.py <file path> # Run the script
without virtualenv
$ sudo apt-get install python3-pip
$ pip3 install adal
$ scp -r certificate pi@192.168.1.145:sharepoint-rest-upload
From https://github.com/AzureAD/azure-activedirectory-library-for-python/wiki/Client-credentials
Generate a key:
openssl genrsa -out server.pem 2048
Create a certificate request:
openssl req -new -key server.pem -out server.csr
Generate a certificate:
openssl x509 -req -days 365 -in server.csr -signkey server.pem -out server.crt
You will have to upload this certificate (server.crt) on Azure Portal in your application settings. Once you save this certificate, the portal will give you the thumbprint of this certificate which is needed in the acquire token call. The key will be the server.pem key you generated in the first step.
Go to https://portal.azure.com
and Azure Active Directory
> App Registration
. From there create an Wep App / Api
application and on the app settings go to Keys
and upload the server.crt
file. Note the fingerprint.
The Tenant_id can be found from Azure Active Directory
> Properties
.
$ python3 rest-upload <file path>
This script uses batch upload and has the only limitation of 30 minutes per upload.