【发布时间】:2016-05-10 07:24:53
【问题描述】:
我正在尝试通过电话向我的所有用户发送通知。我正在使用 GCM 和 phonegap 推送插件。我在数据库中保存了一个registrationId,然后我编写了这2个函数并使用soap Web服务。不发送通知。 这是我的代码。功能:
function sendPush($registrationId, $title, $message) {
$registrationIds = array(
$registrationId
);
$msg = array(
'message' => $message,
'title' => $title,
'vibrate' => 1,
'sound' => 1
// you can also add images, additionalData
);
$fields = array(
'registration_ids' => $registrationIds,
'data' => $msg
);
$headers = array(
'Authorization: key='.
'AIzaSyD-sL8HiKyKRWdwxVMmTMYgkqOgVGOiNP8',
'Content-Type: application/json'
);
$ch = curl_init();
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, false);
curl_setopt($ch, CURLOPT_POSTFIELDS, json_encode($fields));
$result = curl_exec($ch);
if ($result === false) die('Curl failed '.curl_error());
curl_close($ch);
return $result;
}
function push() {
$db = new PDO('mysql:host=localhost;dbname=testf', 'root', '');
$sql = "select * from client";
$texte = '<table>';
// $texte=array();
foreach($db - > query($sql) as $data) {
$texte = $texte.
'#'.$data["regId"];
}
$texte = $texte;
return $texte;
}
电话是:
$client = new nusoap_client('http://localhost/fou/server.php');
$title = $_POST['title'];
$message = $_POST['message'];
$result = $client->call('push');
//echo $result;
$x = explode("#", $result);
$nb = count($x);
for ($i = 0; $i < $v; $i++) {
$resp = $client->call('sendPush', array('registrationId' => $x[$i], 'titre' => $title, 'message' => $message));
print_r($resp);
}
【问题讨论】:
-
您在 $result 中收到来自 google 的响应 JSON 吗?
-
不,我没有收到 $result 的回复
-
你一定得到了什么。我可以看到您没有打印或记录 $result 的值。请打印/记录它并共享输出。
-
我打印但没有输出结果。 " $var= $client->call('sendPush',array('registrationId'=>$x[$i],'title'=>$title,'message'=>$message)); print_r($var );"
标签: php android cordova push-notification