daemon_no_auth_rpc
🔴 Unstable
This API's output may be changed in the future.
Retrieve all JSON-RPC
methods this festivald
allows without authorization, set in the no_auth_rpc
option
The reason why this method is 🔴 Unstable
is because it will output all methods, even 🔴 Unstable
ones, which may not exist in the future.
Ordering of the method names should not be relied upon.
Inputs
None
Outputs
Field | Type | Description |
---|---|---|
len | unsigned integer | Total amount of methods |
rpc | array of string 's | The names of all the methods this festivald allows without authorization |
Example Request
festival-cli daemon_no_auth_rpc
curl http://localhost:18425 -d '{"jsonrpc":"2.0","id":0,"method":"daemon_no_auth_rpc"}'
Example Response
{
"jsonrpc": "2.0",
"result": {
"len": 3,
"rpc": [
"collection_brief_artists",
"key_artist_entries",
"search_album"
]
},
"id": 0
}