Push notification Parse.com推送api-随机返回404

Push notification Parse.com推送api-随机返回404,push-notification,parse-platform,http-status-code-404,Push Notification,Parse Platform,Http Status Code 404,我对解析api有问题。我正在发送以下数据: { "where": { "deviceType": "android" }, "data": { "action": "somestring", "aps": { "alert": "some title", "id": 4353453, "s": "some_short_string" }

我对解析api有问题。我正在发送以下数据:

{
    "where": {
        "deviceType": "android"
    },
    "data": {
        "action": "somestring",
        "aps": {
            "alert": "some title",
            "id": 4353453,
            "s": "some_short_string"
        }
    }
}
到https://api.parse.com/1/push 使用带有标题的POST方法:

Content-Type: "application/json",
X-Parse-Application-Id: "myid",
X-Parse-REST-API-Key: "mykey",
User-Agent: "PHPWebapiClient"
Api大多返回状态200,但有时返回404。当然,在这种情况下,通知不会起作用,甚至不会出现在parse admin中。这似乎完全是随机的,我无法确定原因。有趣的是,api总是返回以下标题:

http_code: "HTTP/1.0 200 Connection established"
无论返回什么响应代码

我尝试重新发送请求,但这没有帮助


有没有人遇到过类似的问题?请帮我解决这个问题。

是不是您达到了每秒30个请求的突发限制?不,绝对不是这样。