Hi,
We want to expose a new service to couple of our clients and need to support HTTP agreements with curly braces. Is there any way we can get this input argument with the original curly braces.
eg:http://localhost/test?arg1={cccc}
In LUA tried to get the arg1 as {cccc} but always get the value as cccc.
But if invoked with http://localhost/test?arg1=\{cccc\} then i am able to get the values.
We do not want to ask all of clients to include with a backlash , is there any way we can get the raw argument from nginx / lua.
Shiva