如何在azure notificationhub上更改注册时间(默认= 90天)? 我只在这里提到了这篇文章:
要在移动设备上注册,我使用AzureMessaging组件: https://components.xamarin.com/view/azure-messaging
我在天蓝色门户网站上找不到任何设置。
在组件库中,我找到了ExpirationTime
的{{1}},但它是只读的。 Registration
- 类也受到保护,因此我无法访问。
Registration
感谢您的任何建议。
答案 0 :(得分:0)
目前,您只能使用到期元素设置APN模板的TTL。
<?xml version="1.0" encoding="utf-8"?>
<entry xmlns="http://www.w3.org/2005/Atom">
<content type="application/xml">
<AppleTemplateRegistrationDescription xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.microsoft.com/netservices/2010/10/servicebus/connect">
<Tags>myTag, myOtherTag</Tags>
<DeviceToken>{DeviceToken}</DeviceToken>
<BodyTemplate><![CDATA[{Template for the body}]]></BodyTemplate>
<Expiry>{Template for Expiry in }</Expiry>
</AppleTemplateRegistrationDescription>
</content>
</entry>
但请继续检查documentation以查看此可能更改的更新。