使用WebDAV API的nextcloud

时间:2018-12-02 19:53:16

标签: php webdav owncloud nextcloud

我想使用webDav使用Nextcloud下载文件,但是它不起作用

include '/home/vendor/autoload.php';
function connectDB($userName,$password){
  $settings = array(
    'baseUri' => 'localhost/nextcloud/remote.php/dav/',
    'userName' => $userName,
    'password' => $password
  );
  $client = new Sabre\DAV\Client($settings);
  return $client;
}
$client=connectDB('User','Password');
$response = $client->request("GET", "files/user/Documents/fileexample.jpg");

0 个答案:

没有答案