我正在使用gcm服务发送通知,它在大多数情况下工作正常,但有时它不会将gcm发送到设备或者它发送的消息真的很晚。我该如何解决这个问题?
代码:
/**
* Sending Push Notification
*/
public function send_notification($registatoin_ids, $message) {
// include config
include_once './config.php';
// Set POST variables
$url = 'https://android.googleapis.com/gcm/send';
$fields = array(
'registration_ids' => $registatoin_ids,
'data' => $message,
);
$headers = array(
'Authorization: key=' . GOOGLE_API_KEY,
'Content-Type: application/json'
);
// Open connection
$ch = curl_init();
// Set the url, number of POST vars, POST data
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_POST, true);
curl_setopt($ch, CURLOPT_HTTPHEADER, $headers);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
// Disabling SSL Certificate support temporarly
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
curl_setopt($ch, CURLOPT_POSTFIELDS, json_encode($fields));
// Execute post
$result = curl_exec($ch);
if ($result === FALSE) {
die('Curl failed: ' . curl_error($ch));
}
// Close connection
curl_close($ch);
echo $result;
}
答案 0 :(得分:2)
我知道更改行为的唯一方法是将delay_while_idle设置为true或false并更改time_to_live。例如,通过设置delay_while_idle = false,time_to_leave = 0 Google将尝试尽快传递消息,但是ttl = 0也意味着无法立即发送的消息(假设用户位于网络外的区域)将是最多的可能会丢失。
我在我的应用程序中执行的操作是发送2条具有相同ID的邮件。一个用ttl = 0,所以它试图立即传递它,另一个用ttl = 20minutes。这种方式即使迟到其中一些消息也正在传递。我不确定你的情况是否合理。
答案 1 :(得分:1)
delay_while_idle
的值必须设置为true。从这个documentation开始,它指出如果设备已连接但空闲,除非delay_while_idle标志设置为true,否则消息仍将立即传送。
这也可以是TCP超时,Android有一种机制,每隔x分钟发送一个小网络数据包(称为心跳),以避免tcp连接超时并检查连接是否处于活动状态。您可以查看解释此问题的forum。