上傳之前,我會URLEncode的文件名,所以我的網址是Onedrive業務上傳API:帶有空格的文件名變爲+
https://xxx-my.sharepoint.com/_api/v2.0/drive/items/root:/test+test.txt:/content當我上傳的測試test.txt文件名爲
但這API ISN沒有辦法處理這件事。
onedrive API: https://api.onedrive.com/v1.0/drive/items/root:/test+test.txt:/content可以正確運行
我如何能保持準確的文件名與PHP
如果我沒有urlencode,我的服務器返回400錯誤(無效的URL) –