mirror of
https://github.com/DI0IK/homepage-plus.git
synced 2025-07-16 01:39:49 +00:00
Enhancement: support photoprism app passwords (#4028)
This commit is contained in:
parent
20f5134606
commit
8c1e50d9e7
2 changed files with 11 additions and 3 deletions
|
@ -32,6 +32,11 @@ export default async function photoprismProxyHandler(req, res) {
|
|||
username: widget.username,
|
||||
password: widget.password,
|
||||
});
|
||||
} else if (widget.key) {
|
||||
params.headers.Authorization = `Bearer ${widget.key}`;
|
||||
params.body = JSON.stringify({
|
||||
authToken: widget.key,
|
||||
});
|
||||
}
|
||||
|
||||
const [status, contentType, data] = await httpProxy(url, params);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue