gpt4 book ai didi

ios - 让 GCM 在后台为 iOS 设备工作

转载 作者:IT王子 更新时间:2023-10-29 07:55:24 26 4
gpt4 key购买 nike

我正在尝试将 GCM 用于 IOS 和 Android 客户端。当应用程序在前台时,它似乎可以在 IOS 上正常工作,但是,当应用程序在后台时,通知中心不会收到消息,并且 didReceiveRemoteNotification with completionHandler 不会被调用。

我发现一个问题是从 GCM 到 APNS 的消息格式错误。也就是说,它看起来是这样的:

[message: New message, collapse_key: do_not_collapse, from: **************]
同时,IOS 推送通知应该在通知中包含 aps 键,对吗?以及 content-available 设置为 1。例如:

{ “应用程序”:{ “可用内容”:1 }, “数据ID”:345

顺便说一句,前台应用程序无论如何都会收到消息,问题只出在后台。关于我应该如何处理问题以使 GCM 适用于 ios 和 android 的任何建议?

更新:这是我在网上找到的:

Regarding actual communication, as long as the application is in the background on an iOS device, GCM uses APNS to send messages, the application behaving similarly as using Apple’s notification system. But when the app is active, GCM communicates directly with the app

所以我在前台模式下收到的消息:

[message: New message, collapse_key: do_not_collapse, from: **************]

是GCM的直接消息(APNS根本没有参与这件事)。所以问题是:APNS 是否会重新格式化 GCM 发送给它的内容以遵守 ios 通知格式?如果是这样,我怎么知道 APNS 实际上做了什么以及它是否以不同的格式向我发送通知?有什么方法可以查看来自 APNS 的传入数据日志?

更新:好的,我设法改变了消息的结构,现在在前台模式下我收到了以下消息:

Notification received: ["aps": {"alert":"Simple message","content-available":1}, collapse_key: do_not_collapse, from: **************]

现在好像格式化好了,但是app在后台还是没有任何反应。 didReceiveRemoteNotification completionHandler 没有被调用!我应该寻找什么以及问题出在哪里?方括号会成为推送通知的问题吗?更准确地说,ios 不会发布来自该传入通知的任何警报/角标(Badge)/横幅。

最佳答案

献给每一个想寻找 GCM 背景之谜答案的可怜人。我解决了,问题出在格式上。我发布了正确的格式以及将 Http 请求与一些消息一起发送到 GCM 所需的 Java 代码。所以Http请求头中应该有两个字段,即:

Authorization:key="here goes your GCM api key"
Content-Type:application/json for JSON data type

那么消息正文应该是一个带有键“to”和“notification”的 json 字典。例如:

{
"to": "gcm_token_of_the_device",
"notification": {
"sound": "default",
"badge": "2",
"title": "default",
"body": "Test Push!"
}
}

这是使用 GCM 向指定设备发送推送的简单 java 程序(仅使用 java 库):

public class SendMessage {

//config
static String apiKey = ""; // Put here your API key
static String GCM_Token = ""; // put the GCM Token you want to send to here
static String notification = "{\"sound\":\"default\",\"badge\":\"2\",\"title\":\"default\",\"body\":\"Test Push!\"}"; // put the message you want to send here
static String messageToSend = "{\"to\":\"" + GCM_Token + "\",\"notification\":" + notification + "}"; // Construct the message.

public static void main(String[] args) throws IOException {
try {

// URL
URL url = new URL("https://android.googleapis.com/gcm/send");

System.out.println(messageToSend);
// Open connection
HttpURLConnection conn = (HttpURLConnection) url.openConnection();

// Specify POST method
conn.setRequestMethod("POST");

//Set the headers
conn.setRequestProperty("Content-Type", "application/json");
conn.setRequestProperty("Authorization", "key=" + apiKey);
conn.setDoOutput(true);

//Get connection output stream
DataOutputStream wr = new DataOutputStream(conn.getOutputStream());

byte[] data = messageToSend.getBytes("UTF-8");
wr.write(data);

//Send the request and close
wr.flush();
wr.close();

//Get the response
int responseCode = conn.getResponseCode();
System.out.println("\nSending 'POST' request to URL : " + url);
System.out.println("Response Code : " + responseCode);

BufferedReader in = new BufferedReader(new InputStreamReader(conn.getInputStream()));
String inputLine;
StringBuffer response = new StringBuffer();

while ((inputLine = in.readLine()) != null) {
response.append(inputLine);
}
in.close();

//Print result
System.out.println(response.toString()); //this is a good place to check for errors using the codes in http://androidcommunitydocs.com/reference/com/google/android/gcm/server/Constants.html

} catch (MalformedURLException e) {
e.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
}
}
}

关于ios - 让 GCM 在后台为 iOS 设备工作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31109514/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com