我的云函数中有一个https.onCall函数。我想在用户调用函数时向用户发送推送通知。 Firebase文档对我没有帮助。
exports.bookRoom = functions.https.onCall((data, context) => {
if (context.auth.token.teacher === true || context.auth.token.admin === true) {
// here i want to send notification to the client
}
});