我已经使用GCM实现了推送通知。当我运行必要的文件从本地服务器(在我的XAMPP
服务器的计算机上)向设备发送消息时,一切都工作正常。但是当我将文件上传到我的实时服务器并运行文件时,我没有收到推送通知。我验证了所有文件,但我没有收到。以下是我的php
代码:
<?php
if (isset($_REQUEST["regId"]) && isset($_REQUEST["message"]) && isset($_REQUEST["senderid"])) {
$regId = $_REQUEST["regId"];
$message = $_REQUEST["message"];
$senderid = $_REQUEST["senderid"];
include_once './GCM.php';
$gcm = new GCM();
$registatoin_ids = array($regId);
$message = array("message" => $message, "sender_id" => $senderid);
$result = $gcm->send_notification($registatoin_ids, $message);
echo $result;die;
}
?>
<?php
class GCM {
function __construct() {
}
public function send_notification($registatoin_ids, $message) {
// include config
include_once './config.php';
// Set POST variables
$url = 'https://android.googleapis.com/gcm/send';
$fields = array(
'registration_ids' => $registatoin_ids,
'data' => $message,
);
$headers = array(
'Authorization: key=' . GOOGLE_API_KEY,
'Content-Type: application/json'
);
// Open connection
$ch = curl_init();
// Set the url, number of POST vars, POST data
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_POST, true);
curl_setopt($ch, CURLOPT_HTTPHEADER, $headers);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
// Disabling SSL Certificate support temporarly
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
curl_setopt($ch, CURLOPT_POSTFIELDS, json_encode($fields));
// Execute post
$result = curl_exec($ch);
if ($result === FALSE) {
die('Curl failed: ' . curl_error($ch));
}
// Close connection
curl_close($ch);
echo 'result';
echo json_encode($fields);
echo $result;
}
}
?>
我正在通过提供服务器url
和necesasry参数从我的浏览器执行 send_message.php 文件。在本地计算机上,我收到推送通知,但是当我通过提供实时服务器url
执行相同的文件时,它没有给我任何输出。可能是什么问题?
答案 0 :(得分:1)
当您想要从实际地址访问PHP页面时,您只需要从 XAMPP
启用cURL
转到您的php.ini文件并取消注释以下行(删除;
会将其从评论中删除),
;extension=php_curl.dll
执行此操作后,您可以检查phpinfo()中的curl,如下图所示,
LAMP
来自http://buzznol.blogspot.com/2008/12/install-curl-extension-for-php-in.html:
sudo apt-get install curl libcurl3 libcurl3-dev php5-curl
安装libcurl后,您应该使用以下命令之一
重新启动Web服务器 sudo /etc/init.d/apache2 restart
或sudo service apache2 restart
答案 1 :(得分:0)
问题可能是您用来向Android设备发送推送通知的API密钥。
Google Developers Console中提供了两种API密钥 :
如果您的应用程序在服务器上运行 ,请使用服务器密钥 。
如果您的应用程序在客户端 上运行,请使用浏览器密钥 ,例如从JavaScript或任何其他客户端网络浏览器上下文。
以下是开发者控制台的屏幕截图,您可以在其中获得浏览器&amp;服务器API密钥。