2017-10-13 42 views

回答

1

DriveItem property你正在尋找被稱爲webUrl。對於Office文檔(如Word,Excel和PowerPoint等),webUrl包含在Office Online中打開文檔的完整鏈接:

{ 
    "id": "{driveItem-id}", 
    "name": "{file-name}", 
    "file": { 
     "hashes": { 
      "quickXorHash": "YY1FIiSDCS9hcAptSPs7prNdf5A=" 
     }, 
     "mimeType": "application/vnd.openxmlformats-officedocument.wordprocessingml.document" 
    }, 
    "size": 22750, 
    "webUrl": "https://{domain}/{path}/_layouts/WopiFrame.aspx?sourcedoc{id}&file={file-name}&action=default", 
} 

如果用戶還安裝了本地Office客戶端(Windows,Mac,iPad等辦公軟件),他們還將看到在本機應用程序中打開文檔的選項(它也會自動處理將更改直接保存到OneDrive )。

你可以使用this sample in Graph Explorer來嘗試這個。

0

對於那些別人低GoogleFu低現在。 當您從API獲取項目信息時,將其列在那裏。

欲瞭解更多信息,我發現搜索的最佳術語是「wopiFrame」它的網址的一部分,因此有一些非常相關的搜索結果。

相關問題