JSON RPC parse issue #1144
-
Hey, Currently, I'm trying to integrate signal-cli with my dotnet application using https://github.com/microsoft/vs-streamjsonrpc library.
It fails with the following error:
This invoke Many thanks for any help. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 3 replies
-
Your line has a Byte Order Mark (ef bb bf) in the beginning. signal-cli doesn't expect that, as the input is always UTF-8. |
Beta Was this translation helpful? Give feedback.
Your line has a Byte Order Mark (ef bb bf) in the beginning. signal-cli doesn't expect that, as the input is always UTF-8.
You need to check your library how to remove the BOM.