azure-notificationhub

What happens when an Azure push notification fails to send?

旧时模样 提交于 2019-12-23 07:04:27
问题 Is there any documentation on what the NotificationOutcome class state looks like on a failure? NotificationOutcome result = await _hub.SendNotificationAsync(azureNotification, tags); The MSDN documentation is pretty (completely) useless. I'm guessing non-zero for result.Failure and result.Success means something went wrong (both seem to be 0 on a success) result.State is maybe more useful but there doesn't seem to be much documentation on this either 回答1: I've found the answer on this page

What happens when an Azure push notification fails to send?

三世轮回 提交于 2019-12-23 07:04:03
问题 Is there any documentation on what the NotificationOutcome class state looks like on a failure? NotificationOutcome result = await _hub.SendNotificationAsync(azureNotification, tags); The MSDN documentation is pretty (completely) useless. I'm guessing non-zero for result.Failure and result.Success means something went wrong (both seem to be 0 on a success) result.State is maybe more useful but there doesn't seem to be much documentation on this either 回答1: I've found the answer on this page

Can we register a webapplication to recieve notification from azure notification hub

两盒软妹~` 提交于 2019-12-21 07:31:00
问题 i am trying to create a webapplication which receives notification from azure notification hub. Everywhere i only see mobile devices registering for notifications sent from back-end. I want this webapplication to be used in browser and receives notification from azure notification hub sent from backend. Thanks 回答1: Nope. Azure Notification Hubs are exclusively for push notifications for mobile platforms. If you want a code to receive a notification you shall take a look at Azure Service Bus

Can we register a webapplication to recieve notification from azure notification hub

微笑、不失礼 提交于 2019-12-21 07:29:18
问题 i am trying to create a webapplication which receives notification from azure notification hub. Everywhere i only see mobile devices registering for notifications sent from back-end. I want this webapplication to be used in browser and receives notification from azure notification hub sent from backend. Thanks 回答1: Nope. Azure Notification Hubs are exclusively for push notifications for mobile platforms. If you want a code to receive a notification you shall take a look at Azure Service Bus

Azure Notification Hub unable to upload .p12 for APN

流过昼夜 提交于 2019-12-18 03:05:33
问题 I am not able to upload a .p12 for APN. and this is the error message I received. Any idea what cause this error? SubCode=40000. Failed to validate credentials with APNS. Error is The credentials supplied to the package were not recognized..TrackingId:b18f483e-6285-9d5b-895c-12e2fcc26dcf_M1_G12,TimeStamp:4/21/2014 3:16:19 AM 回答1: I was having the same issue while uploading the certificate on the backend and finally found the solution after lot of struggling. Do the following: Select keys from

azure notification hub tag limits

為{幸葍}努か 提交于 2019-12-17 15:58:29
问题 reading the pricing details http://azure.microsoft.com/en-us/pricing/details/notification-hubs/ there seems to be a limit of number of tags used in a push. Broadcast (tag size) Limited to 10K Limited to 10K Unlimited # of tags (broadcast groups) Limited to 3K Limited to 3K 3 Unlimited Q1. so does that mean max tags per push is 10K? assuming that there is only 1 tag per device. Q2. is the number of tags stored unlimited? essential i need to map a tag to device id. And then send a bunch of tags

Windows Store App Push Notifications via Azure Service Bus

拟墨画扇 提交于 2019-12-13 21:07:59
问题 I'm trying to send a push notification to my Windows Store App developed in my laptop using VS 2013 Express. It's been few days now but I cannot figure out why I get "The Token obtained from the Token Provider is wrong" error. I use Windows Azure Notification Bus for this purpose. I use VS Server Explorer to send test notifications. I can see my laptop is being registered as a device in the Device Registration tab too. I tried the Azure portal as well, but the same error. However, when I try

Create Registration Notification Hub Azure PHP

旧时模样 提交于 2019-12-13 09:24:18
问题 I'm trying to create registration using REST API NotificationHub AZURE from PHP API Microsoft ¿Anyone know how it's done? Regards and thanks! 回答1: Generally speaking, there are 3 main steps required to access Notification Hubs REST endpoints: Parse the connection string Generate the authorization token Perform the HTTP call You can refer to https://azure.microsoft.com/en-us/documentation/articles/notification-hubs-php-backend-how-to/ for more detail. Meanwhile, you can directly use these PHP

iOS Push Notification on Azure Notification Hubs

半世苍凉 提交于 2019-12-13 07:19:00
问题 I'm trying to setup Azure Push Notifications for iOS app using Swift. I followed the documentation provided here https://azure.microsoft.com/en-us/documentation/articles/app-service-mobile-ios-get-started-push. Here is my ClientManager class ClientManager { static let sharedClient = MSClient(applicationURLString: "https://ar-todo.servicebus.windows.net:443") } As per the documentation I have replaced %AppUrl% with the URL of my Azure Mobile App backend. But I get the following error when my

Configuring notification tag for Azure Function

可紊 提交于 2019-12-13 05:25:57
问题 I'm using an Azure function to pick up messages from an event hub and send out notifications via the Azure notification hub. Works great! Now I wanted to see whether I could add tags to those messages in order to allow user targeting via those tags. The output for the notification hub has a "tag expression" parameter which you can configure. But this seems to be a static text. I need to dynamically set these tags based on the message received from the event hub instead. I'm not sure whether