我想通過手機向我的所有用戶發送通知。我正在使用GCM和phonegap推送插件。我在數據庫中保存了一個registrationId,然後我編寫了這2個函數,並使用soap web服務工作。通知不發送。 這是我的代碼。功能:發送推送通知給所有用戶phonegap
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);
}
你會得到一個響應JSON從谷歌在$結果? –
不,我沒有得到$結果 – user1674906
的迴應,你必須得到一些東西。我可以看到你沒有打印或記錄$ result.please的值打印/記錄它並共享輸出。 –