几天前推送通知(gcm)停止接收我的ios应用程序
我发送带有数据的请求:
Map<String, Object> data = new HashMap<String, Object>();
data.put("registration_ids", ids);
Map<String, T> request = new HashMap<String, T>();
request.put("message", message);
data.put("data", request);
data.put("notification", notificationPayload);
data.put("content_available", true);
data.put("priority", "high");
Map<String, String> headers = new HashMap<String, String>();
headers.put("Authorization", "key=" + googleApiKey);
ids不是空的和正确的,其他数据也是正确的。 但是从gcm回复我开始收到此错误无效参数
哪个参数可能无效,前几天有效
由于