Я использую chrome push word word word plugin. Он отправляет уведомление на фоновом фоне в android, но я не знаю ключа для получения ответа на стороне android. Я уже «уведомлял» «уведомления» «данные» .. Но они не работали. пожалуйста помогите.Ключ для извлечения ответа chrome push на стороне android
public function sendGCM($data)
{
$this->putNotificationOnQueue($data);
$apiKey = get_option('web_push_api_key');
$url = 'https://android.googleapis.com/gcm/send';
$id = $this->getClientIds();
if (empty($id)) {
return 'No subscribers on your site yet!';
}
if (count($id) >= 1000) {
$newId = array_chunk($id, 1000);
foreach ($newId as $inner_id) {
$fields = array(
'registration_ids' => $inner_id,
);
$headers = array(
'Authorization: key=' . $apiKey,
'Content-Type: application/json');
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_POST, true);
curl_setopt($ch, CURLOPT_HTTPHEADER, $headers);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
curl_setopt($ch, CURLOPT_POSTFIELDS, json_encode($fields));
$result = curl_exec($ch);
//print_r($result);
}
} else {
$fields = array(
'registration_ids' => $id,
);
$headers = array(
'Authorization: key=' . $apiKey,
'Content-Type: application/json');
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_POST, true);
curl_setopt($ch, CURLOPT_HTTPHEADER, $headers);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
curl_setopt($ch, CURLOPT_POSTFIELDS, json_encode($fields));
$result = curl_exec($ch);
}
$answer = json_decode($result);
curl_close($ch);
if ($answer) {
$this->cleanClientIds($answer);
}
return $result;
}
Еогеаспа ($ NEWID как $ inner_id) { $ полей = массив ( => $ Данных => $ inner_id, 'данные' 'registration_ids',); $ headers = array ( 'Authorization: key ='. $ ApiKey, 'Content-Type: application/json'); } –