Skip to main content

Nextcloud 开发

/status.php

{
"installed": true,
"maintenance": false,
"needsDbUpgrade": false,
"version": "30.0.2.2",
"versionstring": "30.0.2",
"edition": "",
"productname": "Nextcloud",
"extendedSupport": false
}
  • /cron.php

NodeJS

import Client, { Server } from 'nextcloud-node-client';
const server: Server = new Server({
basicAuth: { password: '<your password>', username: '<your user name>' },
url: 'https://<your nextcloud host>/remote.php/webdav',
});

const client = new Client(server);