使用天蓝色功能的通知中心
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
这是您需要做的:
- 来自移动客户端应用,register a template
- 即
{"aps": {"alert": "$(message)"}}
- 从 azure 函数发送模板负载。您应该在已使用模板注册的设备上收到推送
- 即
context.bindings.notification = {
message: "this goes in the $(message) above"
};
如何使用中心从 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
这是您需要做的:
- 来自移动客户端应用,register a template
- 即
{"aps": {"alert": "$(message)"}}
- 即
- 从 azure 函数发送模板负载。您应该在已使用模板注册的设备上收到推送
- 即
context.bindings.notification = { message: "this goes in the $(message) above" };
- 即