I'm trying to upload a file in chunks via the API to SharePoint.
Uploading a 'small' file without chunks works (.../files/add(overwrite=true,url='{file_name}'). (So authentication etc. is working fine)
But when I use startupload/ continueupload/ finishupload it does not work and I get this error message/ response (code: -2147024809): "Parameter name: Specified value is not supported for the serverRelativeUrl parameter."
I need to solve this w/o any other framework like Office365-REST-Python-Client because I need to find out the correct API call.
I've checked the references: https://learn.microsoft.com/en-us/previous-versions/office/developer/sharepoint-rest-reference/dn450841(v=office.15) https://learn.microsoft.com/en-us/previous-versions/office/sharepoint-server/dn760924(v=office.15)
I've also tried w/ and w/o urllib.parse.quote, etc. (I have'nt hat the chance to test the fileoffset part yet because I dont get a working response.)
Here's my code for "big" files.
def uploadFile(bearer_token: str, tenant_name: str, site_name: str, folder_name: str, file_name: str) -> str:
with open(file_name, "rb") as file:
file_size = os.stat(file_name).st_size
big_file = file_size > CHUNK_SIZE
if big_file:
headers = {
'Authorization': f'Bearer {bearer_token}',
'Accept': 'application/json;odata=verbose',
'Content-Type': 'application/octet-stream;odata=verbose'
}
GUID = uuid.uuid4()
chunk_count = 1
chunks_to_be_sent = file_size / CHUNK_SIZE
continue_upload = True
file_path = f"Shared%20Documents/{folder_name}/{file_name}"
#file_path = urllib.parse.quote(file_path)
web_host_url = f"{SHAREPOINT_HOST}"#/sites/{site_name}" #'<host web url>'
# web_host_url = urllib.parse.quote(web_host_url)
while continue_upload:
big_file_chunk = file.read(CHUNK_SIZE)
if not big_file_chunk or chunk_count >= chunks_to_be_sent: # Finish Upload
file_offset = (CHUNK_SIZE * (chunk_count - 1))# + 1
file_url = f"/sites/{site_name}/_api/web/getfilebyserverrelativeurl('{file_path}')/finishupload(uploadId=guid'{GUID}',fileOffset={file_offset})"
continue_upload = False
elif chunk_count < 2: # Start Upload (First Chunk)
file_url = f"/sites/{site_name}/_api/web/getfilebyserverrelativeurl('{file_path}')/startupload(uploadId=guid'{GUID}')"#?@target='{web_host_url}'"
else: # continue Upload
file_offset = (CHUNK_SIZE * chunk_count)# + 1
file_url = f"/sites/{site_name}/_api/web/getfilebyserverrelativeurl('{file_path}')/continueupload(uploadId=guid'{GUID}',fileOffset={file_offset})"
url = urllib.parse.quote(file_url)
conn = http.client.HTTPSConnection(SHAREPOINT_HOST)
conn.request("POST", url, big_file_chunk, headers, encode_chunked=True)
resp = conn.getresponse()
resp = resp.read()
#icecream.ic(chunk_count, file_url, resp)
print(chunk_count, " -- ", resp)
chunk_count += 1
# resp = conn.getresponse()
# resp = resp.read()
return resp.decode("utf-8")
I get this error message/ response: code: -2147024809 Parameter name: Specified value is not supported for the serverRelativeUrl parameter.
1 -- b'{"error":{"code":"-2147024809, System.ArgumentException","message":{"lang":"en-US","value":"serverRelativeUrl\\r\\nParameter name: Specified value is not supported for the serverRelativeUrl parameter."}}}' 2 -- b'{"error":{"code":"-2147024809, System.ArgumentException","message":{"lang":"en-US","value":"serverRelativeUrl\\r\\nParameter name: Specified value is not supported for the serverRelativeUrl parameter."}}}'
Here's my working solution. I think my mistake was to urllib.parse.quote() the URL; but I dont know for sure.
There are to ways:
GetFileByServerRelativePath(decodedurl='{URL}') e.g., url = f"/sites/{site_name}/_api/web/GetFileByServerRelativePath(decodedurl='/sites/{site_name}/{folder_path}/{file_name}')/startupload(uploadId=guid'{GUID}')"
GetFileById('{unique_file_id}') e.g., file_url = f"/sites/{site_name}/_api/web/getfilebyid('{unique_file_id}')/startupload(uploadId=guid'{GUID}')"
General:
Approach:
Expample URL:
Solution with GetFileById('{unique_file_id}'):