使用 php 为 android 推送通知
Posted
技术标签:
【中文标题】使用 php 为 android 推送通知【英文标题】:Push notification for android using php 【发布时间】:2016-01-28 09:00:12 【问题描述】:我要使用android设备我尝试下面的代码与谷歌API密钥“AIzaSyCBpVn9J2TWxPZDqyilCssUh5dbphQQtWE”和设备寄存器ID“APA91bGiZr2BAqkwqQrsxCfXftzVnUGaWnBbI-NYtT3i3vpQC_wwMcLZDoJx-04YHUHUf0NKp3Sjnwx_Rx-U-3fAZOTVFI9oRp2z”推送通知,但它给“未授权 错误 401" 错误..
<?php
define( 'API_ACCESS_KEY', 'AIzaSyCBpVn9J2TWxPZDqyilCssUh5dbphQQtWE');
$registrationIds = array("APA91bGiZr2BAqkwqQrsxCfXftzVnUGaWnBbI-NYtT3i3vpQC_wwMcLZDoJx-04YHUHUf0NKp3Sjnwx_Rx-u-3fAZOTVFI9oRp2z");
// prep the bundle
$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, 1 );
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;
?>
【问题讨论】:
查看这里***.com/questions/25859898/… 参考这个:***.com/questions/12619759/… 【参考方案1】:如果您想检查您的 UDID 和浏览器密钥是否正常工作,则可以通过 this. 进行检查
【讨论】:
以上是关于使用 php 为 android 推送通知的主要内容,如果未能解决你的问题,请参考以下文章
如何从 PHP 网站向 iOS 和 Android 发送推送通知?