#DevHack: Microsoft Graph를 사용하여 SharePoint 라이브러리 생성

이 문서를 읽을 때 Microsoft Graph에서 SharePoint 라이브러리를 만들려고 합니다.이것은 매우 간단하지만 약간 혼란스럽다. 왜냐하면 반드시 lists 단점을 사용해야 하기 때문이다.SharePoint 개발자일 때, 우리는 목록이 라이브러리와 다르다는 것을 알고 있습니다. 목록은 /lists/ URL 경로에서 만들어졌습니다.문서 라이브러리가 아닙니다.

Info: Documentation to create a new list


새 문서 라이브러리를 만들려면 목록 문서 만들기 페이지에서 언급한 것과 같은 호출을 실행할 수 있습니다. genericList 템플릿 값을 사용하지 않습니다.documentLibrary 값을 사용합니다.
POST /sites/{site-id}/lists
Content-Type: application/json

{
  "displayName": "YourLibraryName",
  "list": {
    "template": "documentLibrary"
  }
}

Info: More information about all properties can be found here: JSON body representation.


이렇게 #DevHack

좋은 웹페이지 즐겨찾기