azure-notificationhub

NotificationHub Push Notification returns : The Token obtained from the Token Provider is wrong

梦想的初衷 提交于 2019-12-01 06:16:00
问题 I have Wp8.1 Silverlight app that receives push notification (WNS) from Mobileservice (the old azure service). I therefore wanted to update to the new service because of the new features. I have now created/upgraded a new server to use App Service - Mobile App. And tested push notification with the sample app from azure (everything works). Going back to my app WP8.1 -> Adding the new package Microsoft.Azure.Mobile.Client through NuGet (2.0.1), there is the issue that the Microsoft

Adding Google GCM Api Key Azure Notification Hub Error

匆匆过客 提交于 2019-12-01 04:34:04
问题 We are trying to add our GCM API key to the azure notification hub and we are receiving the following error: SubCode=40000. Failed to validate credentials with GCM. Error is The remote server returned an error: (401) Unauthorized...TrackingId:410c0e33-0c38-1823-8a62-2519627c76a2_M1_G19,TimeStamp:9/19/2014 10:08:32 AM We have setup our GCM API key to allow any IP address and we have also tried registering from code like below but with the same error: NamespaceManager mgr = NamespaceManager

Azure notification hubs - how to set multiple apps on the same hub

喜你入骨 提交于 2019-11-30 15:59:00
问题 I have a situation where I need to use the same notification hub for several iOS applications. For a given tag - all the applications should receive this push. Each iOS app has a different push notification certificate, so only one of the apps actually got the push notification. I don't want to resolve to opening multiple hubs - because then I need to manage which hub each app could belong to - and this is very awkward. How can I achieve this? 回答1: I'm pretty certain what you want to do is

Azure notification hubs - how to set multiple apps on the same hub

亡梦爱人 提交于 2019-11-30 15:37:40
I have a situation where I need to use the same notification hub for several iOS applications. For a given tag - all the applications should receive this push. Each iOS app has a different push notification certificate, so only one of the apps actually got the push notification. I don't want to resolve to opening multiple hubs - because then I need to manage which hub each app could belong to - and this is very awkward. How can I achieve this? I'm pretty certain what you want to do is impossible for several reasons. iOS push is handled via APNS which is an Apple technology. Apple dictates that

Azure Notification Hub registrations disappear when sending a notification

丶灬走出姿态 提交于 2019-11-30 09:03:08
Recently our Azure Notification Hub became a very mysterious entity. When Apple devices register we can see them in Service Bus Explorer and as soon as we try sending any notifications (from SBE or Azure Portal) we get a "Notification Successful" message, but nothing appears on the device. Refreshing registration list uncovers the fact that the registrations were deleted. We are not removing them anywhere in code, and the TTL has not expired. Any suggestions? Notification hub cleans up registrations with invalid tokens during the send flow. Looks like for some reasons APNS rejects your tokens

Azure Notification Hub: Why is NotificationOutcome NotificationId Property Empty?

断了今生、忘了曾经 提交于 2019-11-29 15:23:14
Using a Standard Notification Hub, I want to view telemetry for a specific message using the returned NotificationId and either this rest API: https://msdn.microsoft.com/en-us/library/azure/mt608135.aspx or the NotificationHubClient GetNotificationOutcomeDetailsAsync method: https://msdn.microsoft.com/en-us/library/microsoft.azure.notificationhubs.notificationhubclient.getnotificationoutcomedetailsasync.aspx Either way, I need the Notification Message Id that is supposed to be returned from the hub when sending the message. I am sending the message from the app backend using the

Azure Notification Hub registrations disappear when sending a notification

断了今生、忘了曾经 提交于 2019-11-29 13:04:47
问题 Recently our Azure Notification Hub became a very mysterious entity. When Apple devices register we can see them in Service Bus Explorer and as soon as we try sending any notifications (from SBE or Azure Portal) we get a "Notification Successful" message, but nothing appears on the device. Refreshing registration list uncovers the fact that the registrations were deleted. We are not removing them anywhere in code, and the TTL has not expired. Any suggestions? 回答1: Notification hub cleans up

Azure Notification Hub unable to upload .p12 for APN

早过忘川 提交于 2019-11-29 01:20:40
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 aahsanali 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 your keychain Locate desired push private key Click the small arrow to expand the key & profile

Difference between azure notification hub and azure mobile services

我是研究僧i 提交于 2019-11-28 18:41:30
What are the main differences between azure notification hub and mobile services Which is best to use when. Thanks Those services have a totally different purpose. Mobile Services allow you to provide a backend to (mobile) devices running your apps. Imagine a database that is exposed via a REST based API. You can react on CRUD operations by writing JavaScript code (Azure uses node.js for this purspose) and restrict the access to the database. This allows you to rapidly develop new apps (or at least proofs). Via JavaScript you can send push notifications by communicating the Windows

Azure Notification Hub: Why is NotificationOutcome NotificationId Property Empty?

♀尐吖头ヾ 提交于 2019-11-28 09:18:04
问题 Using a Standard Notification Hub, I want to view telemetry for a specific message using the returned NotificationId and either this rest API: https://msdn.microsoft.com/en-us/library/azure/mt608135.aspx or the NotificationHubClient GetNotificationOutcomeDetailsAsync method: https://msdn.microsoft.com/en-us/library/microsoft.azure.notificationhubs.notificationhubclient.getnotificationoutcomedetailsasync.aspx Either way, I need the Notification Message Id that is supposed to be returned from