Unity 2022.3 CURL plugin is using incrrect protocol?
public string url = “http://my.ip.address.221/betsinplay.txt”; // private bool isDownloaded; private string downloadedText; IEnumerator Checkforbetsinplay() { using (UnityWebRequest www = UnityWebRequest.Get(url)) { yield return www.SendWebRequest(); if (www.result == UnityWebRequest.Result.Success) { downloadedText = www.downloadHandler.text; isDownloaded = true; // Check downloadedText for true or false if (downloadedText.ToLower() == “true”) { // Do something if the value is true […]