我正在尝试使用parse rest API执行批量推送通知请求。parse.com是否支持推送通知的批处理操作?
curl -X POST -H "X-Parse-Application-Id: redacted" -H "X-Parse-REST-API-Key: redacted" -H "Content-Type: application/json" -d '{ "requests": [{ "method": "POST", "path": "/1/push/", "body": { "channels": ["redacted"], "deviceType": "ios", "badge": 1, "data": { "alert": "Hello", "badge": 1, "key": "status" } } }] https://api.parse.com/1/batch
和我收到的错误:
{"code":107,"error":"Method 'POST' to '/1/push/' not supported in batch operations."}