我正在尝试在Cordova中使用推送通知。 我还将推送通知插件添加到我的项目中,并在那里输入了我的发件人ID。 我正在使用Cordova设备插件来获取设备ID 这是我用来将数据发送到服务器的代码。
var id = device.uuid;
alert(id);
document.getElementById("f1").value = id;
document.getElementById("form1").submit();
这是PHP代码:
<?php
// API access key from Google API's Console
define( 'API_ACCESS_KEY', 'KEYGOESHERE' );
$registrationIds = array( $_GET['id'] );
// 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, 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 );
curl_close( $ch );
echo $result;
?>
每次我运行脚本时,都会收到此错误:
{"multicast_id":5616818555748303283,"success":0,"failure":1,"canonical_ids":0,"results":[{"error":"InvalidRegistration"}]}
你能帮帮我吗?我不知道为什么这不起作用,我不是在改变代码中的设备ID字符串。
我的后端/前端部分是否缺少某些东西?
答案 0 :(得分:-1)
使用推送通知时遇到了同样的问题。
您正在从控制台获取Web API Key
。
现在从Server key
标签中获取密钥CLOUD MESSEGING
。
就我而言,它就像魅力一样。
快乐的编码 : - )