'where={"title":"Generic Content Title"}'
In Appclerator Titanium, this is: xhr.send('where={"title":"Generic Content Title"}');
When excluding this param, it returns results successfully.
Thanks,
Brian
var encodedData = Ti.Network.encodeURIComponent('where={"title":"Generic Content Title"}');
xhr.send(encodedData);
'https://api.cocoafish.com/v1/objects/' + class_name + "/query.json?key=" + YOUCFAPPKEY +'&'+'where=’ + Ti.Network.encodeURIComponent('{"title":"Generic Content Title"}');