반응형
Job failed with exception: System.Reflection.TargetInvocationException: Exception has been thrown by the target of an invocation. ---> System.InvalidOperationException: Insecure connection not allowed
at (wrapper managed-to-native) UnityEngine.Networking.UnityWebRequest.BeginWebRequest(UnityEngine.Networking.UnityWebRequest)
Insecure connection not allowed 오류는 보안되지 않은 연결(HTTP등)을 사용하려고 할 때 발생한다. 최근 Unity버전들은 기본적으로 보안되지 않은 연결을 허용하지 않는다.
해결방법으로는 여러가지가 있는데 그중 최선의 방법은 아니지만 가장 간단한 방법은 아래와 같이 HTTP연결을 허용하는 것이다. Api Compatibility Level을 .NET Standard 2.1 -> .NET Framework(4.0) 으로 바꿔주고, Allow downloads over HTTP 를 Always allowed로 바꿔준다.
반응형
에러가 사라졌다.
끗
반응형