What is the maximum length of a URI string generated by Microsoft Push Notification Services?

Can someone find out about the length of the generated URI from Microsoft PUSH Notification Services?

I get a URL string of length 120. I just want to make sure that whenever my Windows application receives a new URI from MPNS, it will always be 120 bytes. If it can be more, then how long can it be?

+6
source share
2 answers

The maximum URL length is 2.083 characters in Internet Explorer

http://support.microsoft.com/kb/208427

In the mobile browsing area, the URL limit can be significantly lower. Many phones still do not support URLs longer than 128, 256 or 512 characters, in particular WAP devices (unlike devices with a full-blown HTTP browser) I suggest using 256 characters

-1
source

Source: https://habr.com/ru/post/914309/


All Articles