在我的AfterSave中,我发动推送,我可以看到成功语句在CloudCode中打印,但我的IOS或Android设备上没有收到任何内容。
以下是Cloudcode
:
function senderPush(instalationId, receiverName, receiverNumber, message, status ) {
var query = new Parse.Query(Parse.Installation);
query.equalTo("installationId", instalationId);
Push.send({
where: query,
data: {
header: "Status : " + status ,
...
badge: "Increment",
message : message,
status : status,
}
},{
success: function() {
console.log("notification sent");
},
error: function(error) {
console.log("Error sending senderPush: " + error);
},
useMasterKey: true
});
}
以下是AndroidManifest.xml
:
<receiver android:name="com.Myapplication.receiver.StatusReceiver" android:exported="false">
<intent-filter>
<action android:name="com.Myapplication.receiver.UPDATE_STATUS" />
</intent-filter>
</receiver>
<service
android:name="com.Myapplication.util.VoiceCommandService"
android:exported="false">
</service>
<meta-data android:name="com.parse.push.gcm_sender_id" android:value="id:XXXXXXXX" />'
这是我的Application.Java
:
Parse.addParseNetworkInterceptor(new ParseLogInterceptor());
Parse.initialize(new Parse.Configuration.Builder(getApplicationContext())
.applicationId(APPLICATION_ID)
.server(BRConstants.MY_IP_ADDRESS_SERVER).build()
);
其他一切都很好。但推动似乎不起作用。没有错误,没有。当我从Android发送数据时,我在Console中收到此消息,该消息有请求但没有响应:
GCM request and response {"request":{"params":
{"priority":"normal","data":{"time":"2016-07-
18T19:50:01.949Z","push_id":"2SxLKSeThF","data":"{\"header\":\"Status :
Cancelled\",\"alertMessage\":\".....
MYDATA.......\":\"Cancelled\"}"}}}}
不确定我在这里缺少什么。
答案 0 :(得分:0)
你可以从GCM获得2把钥匙。
一个用于Android设备,另一个用于服务器。在解析中,您需要放置服务器密钥。