mirror of
https://github.com/TriliumNext/Notes.git
synced 2025-07-27 18:12:29 +08:00
15 lines
330 B
Plaintext
15 lines
330 B
Plaintext
![]() |
GET {{triliumHost}}/etapi/app-info
|
||
|
Authorization: Basic whatever {{authToken}}
|
||
|
|
||
|
> {%
|
||
|
client.assert(response.status === 200);
|
||
|
client.assert(response.body.clipperProtocolVersion === "1.0");
|
||
|
%}
|
||
|
|
||
|
###
|
||
|
|
||
|
GET {{triliumHost}}/etapi/app-info
|
||
|
Authorization: Basic whatever wrong pass
|
||
|
|
||
|
> {% client.assert(response.status === 401); %}
|