使用天蓝色功能的通知中心

notification hub using azure function

如何使用中心从 Azure 函数发送通知:

context.bindings.notification = {
   message: "Hello from " + req.body.name
};

出现错误。

写的文档:

This example sends a notification for a template registration that contains

使用azure函数时如何注册模板?

首先,这是 link 到 notification hub bindings docs

这是您需要做的:

  1. 来自移动客户端应用,register a template
    • {"aps": {"alert": "$(message)"}}
  2. 从 azure 函数发送模板负载。您应该在已使用模板注册的设备上收到推送
    • context.bindings.notification = { message: "this goes in the $(message) above" };