Sebastian Scheibner
Sebastian Scheibner
True, this would be part of a more general feature to get information about updated group information. It would require to compare the old and new group data in signal-cli....
You need to use a more recent rust version, 'alloc' was stabilized in rust 1.36
The client_id can stay the same, you need to adapt the version in the client_type to the latest version and extract the secret key from the jodel apk (#3). Jodel...
You can try to reset the session with `send -e`
Quite likely it's related to the Proxy server. libsignal now does some of the network requests in the cross platform rust code instead of in java code. The cdsi code...
Looks like libsignal-client has added support for http and socks proxies in the latest version: https://github.com/signalapp/libsignal/releases/tag/v0.65.5 Will look into using that from signal-cli side.
Can you check if it works with the latest development version? https://github.com/AsamK/signal-cli/actions/runs/13205624745
`listContacts` has a parameter `--all-recipients` to include all known recipients and also a parameter to filter for one or multiple recipients by number or uuid. For JSON-RPC that's `"params":{"recipient":"d59...","all-recipients":true}`.
409 is indeed the status code for an already taken username. You can check if a given username already exists with `getUserStatus --username user.111`
There's a bug in the command when no recipients are given, as a workaround you can add an empty `recipient` array: ``` { "jsonrpc": "2.0", "method": "getUserStatus", "params": { "username":...