I am new to this API (parse.com). And this is my first question on stackoverflow.
I am currently creating a script to send parameter sets.
This is my current code:
{ "where": { "$or": [ { "deviceType": { "$in": [ "android", "ios" ] }, "carMaker": 3, "year_from": 1981 }, { "deviceType": { "$in": [ "android", "ios" ] }, "carMaker": 5, "year_from": 1995 } ] }, "data": { "alert": "Autoparts Notification", "badge": "Increment", "sound": "cheering.caf" } }
This one does not work and returns me the error "too many $ or offers". But when I delete "year_from", it allows me to send messages for push notifications. Is there any way to do this? Please help me. I do not know workarounds for this. Please tell me if something is missing for you to help me. Thanks in advance.
source share