-
Notifications
You must be signed in to change notification settings - Fork 245
Open
Labels
Description
I connect to my own server using ip address like "http://0.0.0.0:0" and it worked in windows.
In the case of iOS platform,though I check the "Allow web connection to non-https websites",it doesnt work on my iphone(ios 11).
I tired to add plist:
<key>0.0.0.0(my server ip address)</key> <dict> <key>NSExceptionAllowsInsecureHTTPLoads</key> <true/> <key>NSExceptionRequiresForwardSecrecy</key> <false/> <key>NSIncludesSubdomains</key> <true/> </dict>
should I use a domain name to connect to my server?
if so what should I do?
Or there's other problem causing this issue.
Looking for help.
Thanks^_^