1

我正在使用 azure 功能(设置为在手动输入时触发)向移动设备发送通知消息。我的代码编译没有任何问题,它运行得很好。但是,我没有从我的设备收到任何消息。我检查了“通知中心命名空间连接”、“通知中心名称”和“标签表达式”的值,它们都有正确的值。我在这里错过了什么吗?

这是我的代码:

using System;
using Microsoft.Azure.NotificationHubs;

public static void Run(string input, out string notification, TraceWriter log)
{
    log.Info($"C# manually triggered function called with input: {input}");
    notification = "{\"message\":\"Hello from C#. Processed a queue item!\"}";
}

编辑:我使用通知中心的“测试发送”功能发送所有消息。我还将所有消息发送到与通知中心交互的 web 应用程序。我只想摆脱那个 webapp 并用 Azure 函数替换它。

编辑:我的代码基于本教程 -

从 Azure 功能访问通知中心

4

0 回答 0