Push-уведомление не работает Android с php - PullRequest
0 голосов
/ 25 января 2019

Я пытаюсь отправить push-уведомление на Android с PHP , я проверил номер своего проекта, ключ API и идентификатор устройства / токен устройства, все учетные данные верны, но я получаюследующая ошибка:

{"multicast_id":7219223859365110681,"success":0,"failure":1,"canonical_ids":0,"results":[{"error":"MismatchSenderId"}]}

Вот мой код:

define( 'API_ACCESS_KEY', 'xxxxxxxxxxxxxxxxxx' );
$registrationIds = array( 'xxxxxxxxxxxxxxxxxx' ); //Replace this with your device token

$msg = array
(
    'message'   => 'here is a message. message',
    'title'     => 'This is a title. title',
    'subtitle'  => 'This is a subtitle. subtitle',
    'tickerText'    => 'Ticker text here...Ticker text here...Ticker text here',
    'vibrate'   => 1,
    'sound'     => 1,
    'largeIcon' => 'large_icon',
    'smallIcon' => 'small_icon'
);
$fields = array
(
    'registration_ids'  => $registrationIds,
    'data'          => $msg
);

$headers = array
(
    'Authorization: key=' . API_ACCESS_KEY,
    'Content-Type: application/json'
);

$ch = curl_init();
curl_setopt( $ch,CURLOPT_URL, 'https://android.googleapis.com/gcm/send' );
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 );
curl_close( $ch );
echo $result;

Что не так в моем коде?

1 Ответ

0 голосов
/ 25 января 2019

попробуйте изменить

$fields = array
 (
'registration_ids'  => $registrationIds,
'data'          => $msg
);

на

$fields = array
(
'to'  => 'XXXXXXXXXXX',//device token
'data'=> json_encode($msg)
);

и

$headers = array
(
'Authorization: key=' . API_ACCESS_KEY,
'Content-Type: application/json'
 );

на

$headers = array
(
'Authorization'=> 'key='. API_ACCESS_KEY,
'Content-Type'=> 'application/json'
);
...