Add app password auth option

Add app password authentication option which seems to be mandatory if an external auth provider is used.
This commit is contained in:
Björn Martin
2021-08-19 17:09:18 +02:00
committed by Bjoern Martin
parent 0d0def9a1c
commit 881de39b7d

View File

@@ -12,7 +12,9 @@ WebDAV basics
The base url for all WebDAV operations for a Nextcloud instance is :code:`/remote.php/dav`.
All requests need to provide authentication information, either as a Basic Auth header or by passing a set of valid session cookies.
All requests need to provide authentication information, either as a Basic Auth header or by passing a set of valid session cookies.
If your Nextcloud installation uses an external auth provider (such as an OIDC server) you may have to create an app password. To do that browse to your user Settings > Security and create one. It will provide a username and password which you can use within the Basic Auth header.
Testing requests with curl
--------------------------