Hi
I've asked this question before and didn't really get anywhere other than deciding to get the money refunded for the certificates I purchased from them and try another host and use LetsEncrypt (which worked)
I've recently tried the GoDaddy certificates again as they're just more convenient for me to work with but I'm experiencing the same problem. The certificates are set up fine and can access https in the browsers across devices, and can also access https via an AppGameKit app on all devices, except Android.
Before I give up once again and get it refunded is anyone able to try this simple script on their Android device via the AppGameKit Player to see if it works please?
http = CreateHTTPConnection()
SetHTTPHost(http, "www.chastikeyserver.com", 1)
SendHTTPRequestASync(http, "welcome.html")
while GetHTTPResponseReady(http) = 0
Print( "Connecting..." )
Sync()
endwhile
response$ = GetHTTPResponse(http)
do
print(ScreenFPS())
print(response$)
Sync()
loop
If I change the value to 0 in SetHTTPHost it works ok.
The above code works fine on my MacBook, and fine on my iOS device. It's just Android (or at least my Android) although I think I may have had a different Android device when I tried it previously.