如何使用FCM从服务器向用户发送推送通知?

时间:2019-09-07 17:57:54

标签: javascript firebase firebase-cloud-messaging google-cloud-functions

我的云函数中有一个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
  }
});

0 个答案:

没有答案