I have a requirement for passing a JSON object as a url parameter like this : Eg: example.com/index.html&uielements={"Bookmark":["disable"],"Favourite":["hide"]}
Can I use gzip compression to compress the url parameter `uielements' ?
I know we can achieve this using 3rd party libraries like https://github.com/Sage/jsurl/ and http://pieroxy.net/blog/pages/lz-string/index.html but the requirement is not to use any additional library.
Any leads will be very useful.
Thanks in advance.