Hi,
I send content of notifications to a ws with json format.
I have to escape characters with replacement fonctions for each %evtprm variable :
\\ -> \\\\
\n -> \\n
" -> \"
I use next this variables in my json post message :
{
"ownerApplication":"%evtprm1",
"title":"%evtprm2",
...
}
There is other solution to format json message easiest ?
Thanks !