gpt4 book ai didi

android - GCM 无法在实时服务器上运行

转载 作者:行者123 更新时间:2023-11-30 03:04:39 25 4
gpt4 key购买 nike

我已经使用 GCM 实现了推送通知。当我运行必要的文件以从我的本地服务器(在我的计算机上使用 XAMPP 服务器)向设备发送消息时,一切都运行良好。但是当我将文件上传到我的实时服务器并运行这些文件时,我没有收到推送通知。我验证了所有文件,但我没有得到。下面是我的 php 代码:

发送消息.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;

}

?>

GCM.php

<?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 和必要参数从我的浏览器执行 send_message.php 文件。在本地机器上,我收到推送通知,但当我通过提供实时服务器 url 执行同一文件时,它没有给我任何输出。可能是什么问题?

最佳答案

当您想从实时地址访问 PHP 页面时,您只需要从您的 XAMPP 启用 cURL

转到您的 php.ini 文件并取消注释以下行(删除 ; 将从注释中删除它),

;extension=php_curl.dll

完成此操作后,您可以像下图一样在 phpinfo() 中检查 curl,

enter image description here

对于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 restartsudo service apache2 restart

关于android - GCM 无法在实时服务器上运行,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22004716/

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