我正在开发一个android应用程序,并使用node.js作为我的后端以及mongodb作为我的数据库。现在我在我的应用程序中有一个简单的UI。但是我想从我的服务器发送一个通知到我的应用程序来检索我的应用程序的信息,比如它的版本等等。我不知道该怎么做,我是新手。有人能帮帮我吗?谢谢你!我可以使用firebase推送通知,但我不想只是发送通知,我希望通知触发一个动作并输出结果。
olhwl3o21#
你想把事情搞得多复杂都行。对于中小型应用程序,我推荐Firebase云消息。你可以找到文档here,android的设置很简单,只要将firebase添加到你的项目中。另一部分是注册令牌,每次创建新应用程序时,它都会有一个注册令牌,此功能的结果(也在文档中),您需要将此令牌保存在后端,有必要向应用程序发送通知。
FirebaseMessaging.getInstance().token.addOnCompleteListener(OnCompleteListener { task ->if (!task.isSuccessful) { Log.w(TAG, "Fetching FCM registration token failed", task.exception) return@OnCompleteListener}// Get new FCM registration tokenval token = task.result// Log and toastval msg = getString(R.string.msg_token_fmt, token) Log.d(TAG, msg) Toast.makeText(baseContext, msg, Toast.LENGTH_SHORT).show()})
FirebaseMessaging.getInstance().token.addOnCompleteListener(OnCompleteListener { task ->
if (!task.isSuccessful) {
Log.w(TAG, "Fetching FCM registration token failed", task.exception)
return@OnCompleteListener
}
// Get new FCM registration token
val token = task.result
// Log and toast
val msg = getString(R.string.msg_token_fmt, token)
Log.d(TAG, msg)
Toast.makeText(baseContext, msg, Toast.LENGTH_SHORT).show()
})
之后,请转到这里的服务器端文档,并检查JavaScript设置,它是这样的:
// This registration token comes from the client FCM SDKs.const registrationToken = 'YOUR_REGISTRATION_TOKEN';const message = { data: { score: '850', time: '2:45' }, token: registrationToken};// Send a message to the device corresponding to the provided// registration token.getMessaging().send(message) .then((response) => { // Response is a message ID string. console.log('Successfully sent message:', response); }) .catch((error) => { console.log('Error sending message:', error); });
// This registration token comes from the client FCM SDKs.
const registrationToken = 'YOUR_REGISTRATION_TOKEN';
const message = {
data: {
score: '850',
time: '2:45'
},
token: registrationToken
};
// Send a message to the device corresponding to the provided
// registration token.
getMessaging().send(message)
.then((response) => {
// Response is a message ID string.
console.log('Successfully sent message:', response);
.catch((error) => {
console.log('Error sending message:', error);
});
您可以找到Google here的介绍视频,检查这是否是您需要的:)
1条答案
按热度按时间olhwl3o21#
你想把事情搞得多复杂都行。对于中小型应用程序,我推荐Firebase云消息。你可以找到文档here,android的设置很简单,只要将firebase添加到你的项目中。
另一部分是注册令牌,每次创建新应用程序时,它都会有一个注册令牌,此功能的结果(也在文档中),您需要将此令牌保存在后端,有必要向应用程序发送通知。
之后,请转到这里的服务器端文档,并检查JavaScript设置,它是这样的:
您可以找到Google here的介绍视频,检查这是否是您需要的:)