android 天蓝色推送通知给另一个用户
android azure push notification to another user
我将消息插入数据库 azure。
在消息中有from_id和to_id。
如何向 to_id?
发送推送
function insert(item, user, request) {
request.execute({success:sendPush});
push.gcm.send(null, item.message, {
success:function(response) {
console.log('Push notification sent: ', response);
},error:
function(error) {
console.log('Error sending push notification: ', error);
}
});
}
push.gcm.send方法的第一个参数带一个或多个"tag"。标签唯一标识一个设备或一组设备,在您的情况下,是设备的 _id。目前它为空,因此消息将发送到所有已注册的设备。
请注意,在您的 Android 代码 onRegistered 事件中,每个设备在注册到 GCM 时都需要提供其唯一 ID,如下所示:
ToDoActivity.mClient.getPush().register(gcmRegistrationID, new String[]{ "theDeviceID" } );
我将消息插入数据库 azure。 在消息中有from_id和to_id。 如何向 to_id?
发送推送function insert(item, user, request) {
request.execute({success:sendPush});
push.gcm.send(null, item.message, {
success:function(response) {
console.log('Push notification sent: ', response);
},error:
function(error) {
console.log('Error sending push notification: ', error);
}
});
}
push.gcm.send方法的第一个参数带一个或多个"tag"。标签唯一标识一个设备或一组设备,在您的情况下,是设备的 _id。目前它为空,因此消息将发送到所有已注册的设备。
请注意,在您的 Android 代码 onRegistered 事件中,每个设备在注册到 GCM 时都需要提供其唯一 ID,如下所示:
ToDoActivity.mClient.getPush().register(gcmRegistrationID, new String[]{ "theDeviceID" } );