AlexFlash27
AlexFlash27
How to automatically log in to file browser after receiving a token? I have this now: ``` $url = "http://192.168.1.134:8084/api/login"; $curl = curl_init($url); curl_setopt($curl, CURLOPT_URL, $url); curl_setopt($curl, CURLOPT_POST, true); curl_setopt($curl,...
> Check [filebrowser/filebrowser#2551](https://github.com/filebrowser/filebrowser/issues/2551). Long story short: You put the token in the `X-Auth` header field instead of the standard `Authorization: Bearer ` field I know about it. But how to...