Gcm IOS通知未收到

时间:2016-07-07 12:40:03

标签: ios google-cloud-messaging

几天前推送通知(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回复我开始收到此错误无效参数

哪个参数可能无效,前几天有效

由于

0 个答案:

没有答案