- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我正在尝试在将某些内容添加到我的 Firebase 数据库后发出推送通知。
我已经这样做了,引用this blog 。如果我的数据库中添加了某些内容,我正在尝试发出推送通知
以下代码用于在 firebase 中创建数据库:
// I'm passing my message content and user here it will create a child in database
public static void sendNotificationToUser(String user, final String message) {
DatabaseReference ref;
ref = FirebaseDatabase.getInstance().getReference();
final DatabaseReference notifications = ref.child("notificationRequests");
Map notification = new HashMap<>();
notification.put("username", user);
notification.put("message", message);
notifications.push().setValue(notification);
}
这是我的index.js脚本代码:
var firebase = require('firebase-admin');
var request = require('request');
var API_KEY = ".AAA...iEmIG";
var serviceAccount = require(".google-services.json");
firebase.initializeApp({
credential: firebase.credential.cert(serviceAccount),
databaseURL: "https://chitchatapp-73060.firebaseio.com/"
});
ref = firebase.database().ref();
function listenForNotificationRequests() {
var requests = ref.child('notificationRequests');
requests.on('child_added', function (requestSnapshot) {
var request = requestSnapshot.val();
sendNotificationToUser(
request.username,
request.message,
function () {
requestSnapshot.ref.remove();
}
);
}, function (error) {
console.error(error);
});
};
function sendNotificationToUser(username, message, onSuccess) {
request({
url: 'https://fcm.googleapis.com/fcm/send',
method: 'POST',
headers: {
'Content-Type': ' application/json',
'Authorization': 'key=' + API_KEY
},
body: JSON.stringify({
notification: {
title: message
},
to: '/topics/user_' + username
})
}, function (error, response, body) {
if (error) { console.error(error); }
else if (response.statusCode >= 400) {
console.error('HTTP Error: ' + response.statusCode + ' - ' + response.statusMessage);
}
else {
onSuccess();
}
});
}
listenForNotificationRequests();
当我尝试部署它时,它给我一个如下所示的错误,我该如何解决这个问题
Error: Error occurred while parsing your function triggers.
Error: Certificate object must contain a string "private_key" property.
at FirebaseAppError.FirebaseError [as constructor] (C:\Users\user\AppData\Local\Temp\fbfn_158889RLxz6KyCrVR\node_modules\firebase-admin\lib\utils\error.js:25:28)
at new FirebaseAppError (C:\Users\user\AppData\Local\Temp\fbfn_158889RLxz6KyCrVR\node_modules\firebase-admin\lib\utils\error.js:70:23)
at new Certificate (C:\Users\user\AppData\Local\Temp\fbfn_158889RLxz6KyCrVR\node_modules\firebase-admin\lib\auth\credential.js:108:19)
at new CertCredential (C:\Users\user\AppData\Local\Temp\fbfn_158889RLxz6KyCrVR\node_modules\firebase-admin\lib\auth\credential.js:174:33)
at Object.cert (C:\Users\user\AppData\Local\Temp\fbfn_158889RLxz6KyCrVR\node_modules\firebase-admin\lib\firebase-namespace.js:175:58)
at Object.<anonymous> (C:\Users\user\AppData\Local\Temp\fbfn_158889RLxz6KyCrVR\index.js:12:37)
at Module._compile (module.js:569:30)
at Object.Module._extensions..js (module.js:580:10)
at Module.load (module.js:503:32)
at tryModuleLoad (module.js:466:12)
是什么原因导致此错误以及如何修复它?
最佳答案
您的 google-services.json
文件似乎存在问题。
您是否按照博客文章的指示下载了该文件?如果有,你把它放在哪里?您确定您的文件路径与您放置文件的路径相匹配吗?我期望类似的东西:
var serviceAccount = require("./google-services.json");
在您的评论中,您说您正在使用 Cloud Functions。在这种情况下,您的代码将在 Google 的环境中运行,您甚至不需要 google-services.json
。从这个样本:
firebase.initializeApp(functions.config().firebase);
关于node.js - "Certificate object must contain a string "private_key "property"尝试发送推送通知时,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45350411/
我正在将 Firebase 云消息传递与 Node.js 结合使用。我只想连接到 firebase 云消息传递我收到此错误消息: /home/t/ws/js/webserver/blitzer/nod
Updates [X] I discovered this happen when TLS::credentials creds is declared onglobal scope but if I
我现在在 Google Play 中有一个应用程序,我需要发布这个应用程序的新版本 2。 如何使用 private_key.pepk 签署 android 应用程序? 我丢失了 Java keysto
我可以在 Nodejs 中创建类似下面的签名代码吗? # Load PRIVATE key private_key = OpenSSL::PKey::RSA.new(File.read(Ra
我可以在 Nodejs 中创建类似下面的签名代码吗? # Load PRIVATE key private_key = OpenSSL::PKey::RSA.new(File.read(Ra
#!/usr/bin/env python import OpenSSL.crypto as crypto import sha import base64 KEY_BIT_LENGTH = 1024
在部署 AWS 机器后,我在使用 terraform 的配置程序执行命令时遇到问题。使用以下配置时,我看到一个未找到 key 的异常: ... provisioner "remote-ex
我丢失了 keystore 的密码 :( 而且我无法再在 Google Play 商店上上传更新。 我不能强制它,因为我知道它有 20 个字符,强制它会很长。 我还有private_key.pep
我正在尝试在将某些内容添加到我的 Firebase 数据库后发出推送通知。 我已经这样做了,引用this blog 。如果我的数据库中添加了某些内容,我正在尝试发出推送通知 以下代码用于在 fireb
我有这两个文件(certificate.pem 和private_key.pem),它们由我使用的 API 提供。我需要使用这些文件在 Swift 项目中签署我的 http 请求。 我可以用 Post
我是一名优秀的程序员,十分优秀!