firebase — отправка push-уведомления, ионный возврат php 401, неавторизованный

Я пытался отправить уведомление с php на fcm google, но его возвращение 401 несанкционировано.

Я уже проверил свой токен, ключ API, мой скрипт, но результат все тот же.

Кто-нибудь может мне помочь?

Вот мой php код

  public function pushNotif($data){
$api_key = 'myapikey';
$registrationIds = $data;
// prep the bundle
$msg = array(
'body'=> '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(
'to'=>$data,
'notification'=>$msg
);

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

$ch = curl_init();
curl_setopt( $ch,CURLOPT_URL, 'https://gcm-http.googleapis.com/gcm/send' );
//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, true );
curl_setopt( $ch,CURLOPT_POSTFIELDS, json_encode( $fields ) );
$result = curl_exec($ch );
curl_close( $ch );
echo $result;
}

3

Решение

Вы занесли в белый список IP своего сервера? Это не обязательно по умолчанию для ключа браузера, но это для ключа сервера.

Вы можете проверить это здесь:

https://code.google.com/apis/console/#project:[YOUR НОМЕР ПРОЕКТА]: доступ

Или добавьте это в ваш curl php init:

curl_setopt($ch, CURLOPT_IPRESOLVE, CURL_IPRESOLVE_V4 );

источник Вот

0

Другие решения

Других решений пока нет …

По вопросам рекламы [email protected]