0
루트 사이트의 모든 웹 사이트에 대해 여러 가지 속성을 얻어야합니다.로고 URL 속성 Sharepoint API REST를 사용하는 서브 사이트
내가 사용하고 있습니다 :
http://xxxxxxx/_api/web/webinfos?$select=ServerRelativeUrl,Title,Description
을 내가 설명, 제목 및 ServerRelativeUrl를 얻을이 URL로.
...
<content type="application/xml">
<m:properties>
<d:Description>Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eg</d:Description>
<d:ServerRelativeUrl>/test</d:ServerRelativeUrl>
<d:Title>Site name</d:Title>
</m:properties>
</content>
...
<content type="application/xml">
<m:properties>
<d:Description>Aenean vulputate eleifend tellus. Aenean leo ligula, porttitor eu, consequa</d:Description>
<d:ServerRelativeUrl>/test2</d:ServerRelativeUrl>
<d:Title>Second Site name</d:Title>
</m:properties>
</content>
.....
하지만 모든 웹 사이트에 대해 URL 로고 속성을 가져올 수 없습니다.
클라이언트 측의 모든 첫 번째 웹 사이트에 대한 URL 로고를 어떻게 얻을 수 있습니까?
는 는