gpt4 book ai didi

php - 发送推送通知 ionic php return 401 unauthorized

转载 作者:搜寻专家 更新时间:2023-10-31 21:47:56 25 4
gpt4 key购买 nike

我一直在尝试用 php 向 fcm google 发送通知,但它返回 401 unauthorized。

我已经检查了我的 token 、api key 、我的脚本,但结果还是一样。

谁能帮帮我?

这是我的 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;
}

最佳答案

您是否将服务器 IP 列入白名单?默认情况下,这对于浏览器 key 不是必需的,但对于服务器 key 是必需的。

你可以在这里查看:

https://code.google.com/apis/console/#project:[YOUR项目编号]:访问

或将此添加到您的 curl php init 中:

curl_setopt($ch, CURLOPT_IPRESOLVE, CURL_IPRESOLVE_V4 );

来源here

关于php - 发送推送通知 ionic php return 401 unauthorized,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52732124/

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