FCJSon::Save() and FCJSon::SaveAll() both take an extra integer flag parameter.
Specify 1 in order to prevent the json output from escaping forward slash characters.
The escape is required by the specification, but google doesn't like it.
This also requires FCJSon being compiled with version 13 of libjson-c.
If you're installed version does not support this, then you will need to use
something similar to
jsoncontent = sys.rep_string(RS_ALL,jsoncontent,"\","");
to remove the backslash escape characters.