I'm getting 406 Not Acceptable as response when I try to send a push notification, I understand the problem and I've fixed the code that was causing it but I'm not quite sure how to make the error go away, the server responds with 406 to every one of my requests for push notifications. Will this happen by itself after a period of time or? Thanks.
windows phone push notifications 406 not acceptable
704 Views Asked by mgeric At
2
There are 2 best solutions below
0
Eran
On
This isn't an error you should (or could) do something about. It just means that you sent too many notifications to the same device or too many notifications per second, and you have to wait until you can send more.
406 Not Acceptable
This error occurs when an unauthenticated cloud service has reached the per-day throttling limit for a subscription, or when a cloud service (authenticated or unauthenticated) has sent too many notifications per second. The cloud service can try to re-send the push notification every hour after receiving this error. The cloud service may need to wait up to 24 hours before normal notification flow will resume.
(Source)
Related Questions in WINDOWS-PHONE
- DEP0001: Unexpected Error: SmartDeviceException - Incompatible version of the RPC stub. [0x80131500] during UWP app deployment to Windows phone
- Chilkat mail UWP on Windows 10 Phone gives Class not registered error
- How to fix the issue "UWP app stopped after navigation"?
- How to set Grid.Background to MediaPlayer in UWP?
- Unable to publish UWP package update with the `invalid package identity/family name` error
- Lumia 640 LTE edge explorer - javascript $ is not defined
- iOS / Windows Store App: can I know whether my other app installed on this device/user account?
- Get app purchase date for Windows Phone 8.1 and Windows 8.1 applications
- Complicated background work in UWP, is it real?
- How to export React native code for windows platform
- Get Host File on my windows phone
- UWP Windows Phone detect type of USB connection
- Override default call interface
- UWP: Control won't fit to the available view area of my Grid cell
- Angular 4, Phonegap icons Windows Phone 10
Related Questions in PUSH-NOTIFICATION
- Custom Sound for Expo Push Notifications Only Works in Foreground
- Actionable notification api call not working in background
- After adding the packages of "Xamarin.Firebase.Messaging", getting error related to JAVA0000 "Compilation failed"
- How can I schedule OneSignal notifications programmatically from a Flutter app
- Firebase push doesnt receive after init in other process
- Background notification also get muted on removing "sound" from presentationOptions in @capacitor-firebase/messaging?
- Push notifications in flutter webview app
- (iOS) Can we have multiple APNs files for the same app?
- How does iOS notifications handle cases without content-available key
- Push notification can't be activated in certain phone models and OS
- How to modified remote notification body content in ios using react native
- Push notification sent from Laravel is received by Android device, but isn't received by iOS device
- i want to get the FCM token
- How to update my service worker for existing web push subscribers?
- Android FCM push notification not launching the application on click
Related Questions in MPNS
- SharePoint Push Notifications to Client Apps
- What is the difference between un-authenticated and authenticated MPNS?
- MPNS Windows Phone configuration
- What does MPNS response with status code 200 and notification status 'Dropped' mean?
- Enable Push Notifications for Enterprise Application
- Windows Phone 8 Receiving raw Push Notification issue
- MPNS sending Unauthorized response 401 Registration has expired
- WP8 unauthorized MPNS channel
- MPNS bad request when push notification (WP 8.1)
- Send Push Notification To a Windows Phone 8.1 app Without submitting it to store
- Worklight_HydribApp_PushNotification for Windows Phone 8 Using MPNS
- Using WNS for Windows phone Silverlight 8.1-MPNS for Windows phone 8
- Registered for MPNS instead of WNS
- Send Json Payload to MPNS by AWS SNS
- MPNS messages are not working
Related Questions in HTTP-STATUS-CODE-406
- Getting 406 Not Acceptable when Ktor serializes the object
- How to handle HttpMediaTypeNotAcceptableException in Java SpringBoot?
- Using SendGrid API I get a 406 error: Resource representation is only available with these types:\ntext/html; charset=UTF-8
- Getting status code 406 every time i send a message with kafka
- Paypal 406 not acceptable Not Acceptable address error
- How to use NodeJS/Browsers native fetch library to download a Gitlab Archive without using the same-origin mode? Receiving Error 406
- Avoid 406 error when using GET method in API testing with Cypress
- Image serving returns 406 (Not Acceptable) when requested from img markup
- How to access a website that gives UnAcceptable error message: 406?
- NotAcceptableException (HTTP 406 Not Acceptable) but no apparent error from MessageBodyWriter
- Python to WordPress REST API remote posting 406 error even I'm passing user agent in the header
- Unable to import Kibana Dashbord using api
- Python - Web Scraping Code Error - HTTP Error 406: Not Acceptable
- C# HttpResponse returns statuscode 406 Not Acceptable
- Problems downloading file using HttpClient
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular # Hahtags
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
Fixed itself after a while, half a day or so.