Hello,
I'm attempting to use the AJAX object to post JSON data.
The write-up for the AJAX object mentions that the URLEncode system expression should be used for urlencoded content, but is there a similar expression for JSON content?
If not, any reason manually formatting the data wouldn't work? I understand the double quotes requirement. For example, in the data field:
{"title":"Hello back at you"}
would need to be:
{""title"":""Hello back at you""}
Thanks for any insights.