Hello, I am having an issue with both Android and iOS,
I am trying to execute a request to a url with port 6000, but the request is throwing the following error:
failed to load resource: net:: ERR_UNSAFE_PORT
According to my research port 6000 is indeed an unsafe port on most browsers, however, changing that port on the server side is not an option. I have also done some research and found that launching the browser using the following parameter (at least for Chome): --explicitly-allowed-ports=6000
will add an exception, allowing the request to be done over the required port. So my question is, how can I include this extra parameter to Ionic webviews so It can use it when calling the browser. Or there is another work around to allow ionic webviews to execute unsafe ports? Thanks a lot.