Структура базы данных
Структура уведомлений
После успешного развертывания моей функции на базе Firebase у меня появляются эти ошибки в журналах функций Firebase
1: Function execution took 1724 ms, finished with status: 'error'
2:TypeError: Cannot read property 'uid' of undefined
at exports.sendNotification.functions.firestore.document.onWrite.event
(/user_code/index.js:9:30)
at cloudFunctionNewSignature (/user_code/node_modules/firebase-
functions/lib/cloud-functions.js:105:23)
at cloudFunction (/user_code/node_modules/firebase-functions/lib/cloud-
functions.js:135:20)
at /var/tmp/worker/worker.js:733:24
at process._tickDomainCallback (internal/process/next_tick.js:135:7)
3:{"@type":"type.googleapis.com/google.cloud.audit.AuditLog","status":
{"code":3,"message":"The request has errors"},"authenticationInfo":
{"principalEmail":"info.jap.123@gmail.com"},"requestMetadata"{"callerIp":"39.50.37.100",
Index.js
'use-strict'
const functions = require('firebase-functions');
const admin = require('firebase-admin');
//admin.initializeApp(functions.config().firebase);
exports.sendNotification =
functions.firestore.
document("Users/{uid}/Notification/{nid}").onWrite(event=>
{
const user_id = event.params.uid
const notification_id = event.params.nid;
});
Класс уведомлений в этом классе Я храню идентификатор уведомления и сообщение в Firebase-Firestore.
private void sendNotification()
{
String number = edTxtDevId.getText().toString();
if (TextUtils.isEmpty(number))
{
edTxtDevId.setError("Please Provide the dev id thank you");
return;
}
Calendar cal = Calendar.getInstance();
SimpleDateFormat sdf = new SimpleDateFormat("HH:mm:ss.SSS");
String time = String.valueOf(cal.getTime());
final String message = "Notification has been sent to this number "+number+" by this number "+user_id+" at time = "+time;
Map<String , Object> notificationMessage = new HashMap<>();
notificationMessage.put("From" , mUserId);
notificationMessage.put("message" , message);
for (int i = 0 ; i < userList.size() ; i++)
{
if (userList.get(i).equals(number))
{
Log.e(TAG, "sendNotification: "+number+" found " +userList.get(i) + " id = "+i);
Toast.makeText(this, message, Toast.LENGTH_SHORT).show();
mFirestore.collection("Users/"+mUserId+"/Notification").add(notificationMessage).addOnSuccessListener(new OnSuccessListener<DocumentReference>() {
@Override
public void onSuccess(DocumentReference documentReference) {
Toast.makeText(MainActivity.this, message, Toast.LENGTH_SHORT).show();
}
});
}
}
}
Пожалуйста, помогите мне, если вы знаете, как решить эти проблемы Спасибо заранее!