| 本帖最后由 leasr 于 2020-6-8 20:07 编辑 
 sharepoint有25TB,而且是可以使用API的,也就是说还是可以使用搭建网盘,
 安逸安逸
 
  
 获取sharepoint的driveid
 https://graph.microsoft.com/v1.0/drive/root
 {
 "@odata.context": "https://graph.microsoft.com/v1.0/$metadata#drive/root/$entity",
 "createdDateTime": "2020-05-23T15:27:54Z",
 "id": "01LR2GETF6Y2GOVW7725BZO354PWSELRRZ",
 "lastModifiedDateTime": "2020-06-08T11:35:24Z",
 "name": "root",
 "webUrl": "https://loc.sharepoint.com/Shared%20Documents",
 "size": 57387,
 "parentReference":    {
 "driveId": "b!nqMC1t_5h0-pkUeDehnXvCnw0l6FsMNJjTCcPUZlq4oTtablD2MwRZCIyuoBakJj",
 "driveType": "documentLibrary"
 },
 "fileSystemInfo":    {
 "createdDateTime": "2020-05-23T15:27:54Z",
 "lastModifiedDateTime": "2020-06-08T11:35:24Z"
 },
 "folder": {"childCount": 3},
 "root": {}
 }
 获取onedrive的driveid
 https://graph.microsoft.com/v1.0/me/drive/root
 {
 "@odata.context": "https://graph.microsoft.com/v1.0/$metadata#users('23568da8-1333-4a70-9958-d8a79ec6e9cb')/drive/root/$entity",
 "createdDateTime": "2020-05-23T15:26:11Z",
 "id": "01BRBYQMF6Y2GOVW7725BZO354PWSELRRZ",
 "lastModifiedDateTime": "2020-06-08T05:28:19Z",
 "name": "root",
 "webUrl": "https://loc-my.sharepoint.com/personal/admin_loc_onmicrosoft_com/Documents",
 "size": 710448721,
 "parentReference":    {
 "driveId": "b!F_c3fLSFwUCxU2q0N28CVgQc53_Tpp1DlRXGfjMVaScsR__5gLEhTq5pt5hjV3mQ",
 "driveType": "business"
 },
 "fileSystemInfo":    {
 "createdDateTime": "2020-05-23T15:26:11Z",
 "lastModifiedDateTime": "2020-06-08T05:28:19Z"
 },
 "folder": {"childCount": 3},
 "root": {}
 }
 
 |