- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我正在设置一个使用 Azure 推送通知的 Web API 项目。我想使用新的“安装”模型而不是旧的“注册”模型。然而,该文档有点有限。
查看MSDN ,Microsoft.Azure.NotificationHubs.Installation
具有 Tags
属性。
还有一个模板
property 。模板类型为 InstallationTemplate
和 surprisingly还有标签
。
模板不仅仅是一个列表,而是一个从string
映射到InstallationTemplate
的字典。
我理解标签背后的想法。但我对这两个标签属性和字典的键感到困惑。
我看到一个示例,其中Installation.Tag
设置为“foo”,然后使用键“template1”和“template2”添加两个模板。 InstallationTemplate.Tag
设置为“tag-for-template1”和“tag-for-template2”。
最佳答案
经过一些测试,我变得更明智了。
两者,Microsoft.Azure.NotificationHubs.Installation
的标签和 InstallationTemplate
内的标签使用SendTemplateNotificationAsync()
时将被评估。字典中必须指定的键似乎未使用。
示例:
var installationA = new Installation();
installationA.Tags = new List<string> { $"install-a" };
installationA.Templates.Add("someKey", new InstallationTemplate
{
Body = "JSON-FOR-TEMPLATE"
Tags = new List<string> { $"subtemplate1" }
});
installationA.Templates.Add("someOtherKey", new InstallationTemplate
{
Body = "JSON-FOR-TEMPLATE"
Tags = new List<string> { $"subtemplate2" }
});
var installationB = new Installation();
installationB.Tags = new List<string> { $"install-b" };
installationB.Templates.Add("someKey", new InstallationTemplate
{
Body = "JSON-FOR-TEMPLATE"
Tags = new List<string> { $"subtemplate1" }
});
installationB.Templates.Add("someOtherKey", new InstallationTemplate
{
Body = "JSON-FOR-TEMPLATE"
Tags = new List<string> { $"subtemplate2" }
});
使用标签表达式,您现在可以过滤“install-a”、“install-b”、“subtemplate1”和“subtemplate2”的任意组合。
查询不会使用键“someKey”和“someOtherKey”,我不明白为什么他们不使用 List<T>
而不是字典。
关于c# - 使用 Microsoft.Azure.NotificationHubs.Installation 类时如何选择模板?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38107932/
我遇到了 NotificationHubs 的问题,偶尔通知无法以静默方式传递到 iOS 客户端。 我的通知中心设置为对 APNS 使用 token 身份验证(而不是旧证书身份验证)。 我将我的通知中
我正在学习通知中心和此 article有两种注册方式 来自使用 Microsoft.WindowsAzure.Messaging.NotificationHub 的设备的一个从设备注册。 第二个使用
我正在学习通知中心和此 article有两种注册方式 来自使用 Microsoft.WindowsAzure.Messaging.NotificationHub 的设备的一个从设备注册。 第二个使用
我已经设置了 Azure 通知中心,并且已完成将推送通知合并到我的 Android 应用中的所有步骤。该应用程序一直运行良好,可以正常接收推送通知。然后今天我去尝试发送推送,但失败了。因此,我从 Az
我正在尝试将失败的通知存储在db中,例如客户端无法访问互联网。这将使我能够从 backgroundService 检查是否缺少通知,然后从 backgroundService 创建它。 因此,我的 A
我正在尝试将失败的通知存储在db中,例如客户端无法访问互联网。这将使我能够从 backgroundService 检查是否缺少通知,然后从 backgroundService 创建它。 因此,我的 A
我通过 Azure 门户向移动平台发送通知。在 Windows 和 Android 平台上没有问题,但我无法向 IOS 平台发送 4 天通知,并收到此错误 最佳答案 根据您的描述,我已经测试了在Azu
我正在 Xamarin.iOS 上集成推送通知系统。我已经查看了 Azure 提供的文档:xamarin notification hubs ios push notification apns ge
有没有办法通过NotificationHub使用UWP应用发送通知?在许多教程中,他们使用 Microsoft.Azure.NotificationHubs Nuget 包通过 C# 控制台应用程序发
在成功登录后的应用程序中,我想使用标签注册到 NotificationHub,其中标签是电子邮件地址。 以下场景在 iOS 上运行良好: MessagingCenter.Subscribe(this,
我通过在 foreach 循环中连续发送许多通知,对使用 Azure 通知中心发送推送通知进行了一些延迟/性能测试。对于 100 个“SendNotification”请求,它工作正常,尽管它相对
有没有办法在企业代理后面使用带有身份验证的 azure-notificationhubs-java-backend 库? 我将在应用程序服务器(JBoss 6)下使用该库,因此我想避免经典的 Java
我通过在 foreach 循环中连续发送许多通知,对使用 Azure 通知中心发送推送通知进行了一些延迟/性能测试。对于 100 个“SendNotification”请求,它工作正常,尽管它相对
我已经使用 Azure 门户配置了一个通知中心,用于为移动应用程序实现推送通知。在导航到“访问策略”部分时,我看到了几个具有名称的策略:DefaultListenSharedAccessSignatu
我正在尝试使用 Azure REST API 从 ColdFusion 脚本进行推送。有一个有效的 PHP 脚本位于 here我尝试将 PHP 转换为 ColdFusion。下面是我到目前为止的代码,
我正在尝试使用 Azure REST API 从 ColdFusion 脚本进行推送。有一个有效的 PHP 脚本位于 here我尝试将 PHP 转换为 ColdFusion。下面是我到目前为止的代码,
我正在设置一个使用 Azure 推送通知的 Web API 项目。我想使用新的“安装”模型而不是旧的“注册”模型。然而,该文档有点有限。 查看MSDN ,Microsoft.Azure.Notific
我正在尝试通过 Azure NotificationHub REST Api 从 iOS 设备 (iPhone) 发送推送通知。我正在按照我在网上找到的 Azure 文档从 Xamarin.iOS 解
在 azure 上部署 azure 函数时,我收到错误,其中 func 找不到通知中心连接字符串设置。 Error indexing method 'NotifyMobiles.Run'Unable
在我的应用程序中将 Xamarin.Azure.NotificationHubs.Android Nuget 从古老的 0.6 升级到 1.1.4.1(这还涉及从支持库升级到 AndroidX)后 -
我是一名优秀的程序员,十分优秀!