//native
// https://docs.nextcloud.com/server/latest/developer_manual/client_apis/OCS/ocs-api-overview.html#capabilities-api
// Should return an XML document on success.
export async function main(baseUrl: string) {
const resp = await fetch(`${baseUrl}/ocs/v1.php/cloud/capabilities`, {
headers: {
"OCS-APIRequest": "true",
},
});
if (!resp.ok) {
throw Error(`HTTP Error ${resp.status} - ${await resp.text()}`);
}
return await resp.text();
}
Submitted by hugo989 9 days ago