Slashes in the id are not escaped when requesting a thread
Describe the bug If a thread id contains a “/”, it is not escaped when querying a single thread and a "Unrecognized request URL" error is returned.
To Reproduce Query a single thread via the SDK where the id contains a “/”
Expected behavior The id is fully escaped on request, the thread data is returned
SDK Version: 2.5.0
If i can add something else, the same problem occur when trying to fetch for a folder with id containing "/", seems like the the ids are simply encoded but the "/" are not replaced by most basics encoding function, they need to be replace manually
account.getId().replaceAll("/", "%2F") worked for me as a temporally solution but could be a really good add to the sdk
I‘ve also tried to replace the slashes before, but the ‚%‘ is replaced by the escaping mechanism of the sdk afterwards. Which leads to ‚%252F‘.
A workaround for me was to wrap these ids by some strings like ‚blabla(ID)blabla and add an Interceptor to the underlying okhttp requester. This interceptor unwraps the id, adjusts the HttpUrl accordingly - and replaces the slashes within the id.