Hello,
I'm developing an API in java, which returns a JSON object.
One of the final json fields is long text, of unknown size. The text may or may not contain special characters.
I am sending the raw information in a string. But as the dimension is unknown, I am afraid it will exceed what is acceptable. Any way to compress this information?
Can I send the converted string to a byte array, can any client-side language / platform get the original string?
Text can be the size of a multipage document. Who knows of a whole book ...
Thank you.