propfind
propfind
The PROPFIND method retrieves properties defined on the resource identified by the Request-URI
const [result] = await propfind({
url: 'https://caldav.icloud.com/',
props: [{ name: 'current-user-principal', namespace: DAVNamespace.DAV }],
headers: {
authorization: 'Basic x0C9uFWd9Vz8OwS0DEAtkAlj',
},
});
Arguments
url
required, request urlprops
required, array of DAVProp to finddepth
DAVDepthheaders
request headers
Return Value
array of DAVResponse
Behavior
send a prop find request, parse the response xml to an array of DAVResponse.