azure-notificationhub

Azure Notification Hub quota limits

只谈情不闲聊 提交于 2019-12-04 16:22:11
The notification hub REST API documentation mentions a quota for notification hubs in a given namespace. I couldn't find on the documentation nor the pricing page what are the boundaries for the quota for each plan. Empirically, i now know that on the free/basic tier the limit is 100 notification hubs per namespace. The maximum number of resources of type NotificationHub has been reached or exceeded. Actual: 100, Max allowed: 100. Can the quotas be raised? What are the costs? My current system uses hubs for multitenancy and before jumping to refactor the architecture are there any limits not

Azure Notification Hub no longer accepting GCM API Key

寵の児 提交于 2019-12-04 15:54:34
问题 Recently, every time I try to add or modify the GCM API Key in an Azure Notification Hub, I get the following error: SubCode=40000. Failed to validate credentials with GCM. The remote server returned an error: (401) Unauthorized... I have tried using the same key that works in other Notification Hubs, as well as creating a new one via the Google Developer's console. I've also recently come across articles stating that GCM is moving to FCM (Firebase Cloud Messaging). Could this be the cause of

Is Microsoft.Azure.NotificationHubs 1.0.9 compatible with .NET Core 2.0?

风流意气都作罢 提交于 2019-12-04 13:10:36
We are using NotificationHubs version 1.0.9 with .NetCore 2.0 and .Net Framework 4.7. At compile time, we get this warning: "Package Microsoft.Azure.NOtificationHubs 1.0.9 was restored using '.NETFramework, version=4.6.1' instead of the project target framework '.NETCoreApp, version=2.0. this package may not be fully compatible with your project." Everything is still built, but at runtime when this call is invoked: RegistrationDescription hubRegistration = await hubClient.CreateAppleNativeRegistrationAsync(device.DeviceToken); //hubClient is NotificationHubClient We get this error: Has anyone

How to register devices to Azure Notification Hub from server side(with NodeJS sdk) ?

心不动则不痛 提交于 2019-12-04 12:19:48
问题 I am developing a windows phone 8.1 App (RT), I am trying to push notification with Azure Notification Hub. I am able to do it with the client side SDK available. But I want to do the device registration, tagging etc. from the server side. I see a good guide for .Net backend at http://blogs.msdn.com/b/azuremobile/archive/2014/04/08/push-notifications-using-notification-hub-and-net-backend.aspx . I am using NodeJS in the backend server side. Can anyone help me in the same, with a sample code

Azure Notification Hub - Limit on registrations

て烟熏妆下的殇ゞ 提交于 2019-12-04 05:45:30
问题 What is the limit on registrations to cause a 403 for register create/update? According to the documentation, registration create/update (http://msdn.microsoft.com/en-us/library/azure/dn223265.aspx) may return a 403. So there must be some kind of limit, though I'm not sure what the limit is. The pricing page does not say anything about a registration limit. the error per the api spec is below 403 Quota exceeded; too many registrations in this namespace. Registration not created what causes

Azure Notification Hubs registration time to live (90 days limit)

白昼怎懂夜的黑 提交于 2019-12-04 04:34:42
Now I'm using PushSharp library to send Apple push notifications (through APNS), but I want to migrate to Notification Hubs for robustness and scalability. I'm planning to implement sending notification via Azure Notification Hubs using backend registration as described in this article . So: There is a method of backend API that an iOS client calls when it has push token updated. In this method I do the registration tagging it with user id. (Previously, I stored push token to user link in DB.) When I have some notification to send for a specific user I send it using the tag (user id).

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

允我心安 提交于 2019-12-04 01:32:51
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 astaykov 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 Queues, Topics and Subscriptions . Then decide which of all to use. It is mentioned in Notification

Authenticated push notifications without publishing the App to the Windows Phone Store

白昼怎懂夜的黑 提交于 2019-12-03 14:20:41
We are currently developing a Windows Phone 8 application that won't be published to the Windows Phone Store but will be distributed through our Company Portal ( Windows Intune Direct Management ). Our team would like to add Push Notifications using MPNS (Microsoft Push Notification Service) but we are aware that, without submitting the app to the Windows Phone Store , we would be forced to use unauthenticated push notifications that are throttled to something like 500 notifications\day per subscription. We are evaluating to try a service like Azure Notification hub but It's hard to find some

How to register devices to Azure Notification Hub from server side(with NodeJS sdk) ?

☆樱花仙子☆ 提交于 2019-12-03 07:49:45
I am developing a windows phone 8.1 App (RT), I am trying to push notification with Azure Notification Hub. I am able to do it with the client side SDK available. But I want to do the device registration, tagging etc. from the server side. I see a good guide for .Net backend at http://blogs.msdn.com/b/azuremobile/archive/2014/04/08/push-notifications-using-notification-hub-and-net-backend.aspx . I am using NodeJS in the backend server side. Can anyone help me in the same, with a sample code or so. I want to register devices from server side (iPhone, Android & Windows Phone), actually I have

Why are Azure Notification Hub tags not saving?

回眸只為那壹抹淺笑 提交于 2019-12-02 12:47:12
I am trying to send a message to notification hub, but my tags are not saving. I checked service hub with service hub explorer, and tags are empty: Registration of device: var hs = new HashSet<string>(); hs.Add(tag); hs.Add(sys.ToString()); switch (sys) { case SystemVendorEnum.Android: await Hub.CreateGcmNativeRegistrationAsync(pnsHandle, hs); break; case SystemVendorEnum.Ios: await Hub.CreateAppleNativeRegistrationAsync(pnsHandle, hs); break; } Test method invocation that sends message to hub: // param1: json payload, param2: tag await Hub.SendGcmNativeNotificationAsync("{ \"data\": { \