Curl error 61 with UnityWebRequest

Hello I just download the last version of Unity LTS (Unity 2020.3.11f1)
I have a little function that check a website, everything worked fini with previous version.

But now I have the error :

“Curl error 61: Unrecognized content encoding type. libcurl understands identity content encodings.”

Here is my code

 public IEnumerator myFunction(string word)
{
    UnityWebRequest webRequest = UnityWebRequest.Get("https://1mot.net/" + word);

    yield return webRequest.SendWebRequest();
    if (webRequest.result == UnityWebRequest.Result.ConnectionError)
    {
        Debug.Log("Error: " + webRequest.error);
    }
 }

How can I fix that ?

1 Like

1 Answer

1

We still have the same problemn in 2020.3.15f2!
How its working? When unity will fix it ?