I use webhook to reccord a chat conversation, works well ATM except for accented characters, example of webhook containing accented characters : (RAW content )
Below debug log from JS on front app when chatting with accented characters: (Please focus on the data text, not other metadatas). Each side of text chat participants are correct (accented characters well displayed)
This is probably caused because of text encodings. Try decoding the received HTTP entity with charset ISO-8859-1, which is the default one used by the internal Apache library.
Nonetheless, we have already updated all of encoding in openvidu-server and clients to use UTF-8 instead.
As ISO-8859-1 is limitted to 256 chars, probably many modern symbols will not work with it. This is a limitation brought by the default behavior of Apache library (org.apache.http) and as mentioned in the previous message is already fixed in OpenVidu master branch.