Пример #1
0
        void Start()
        {
            _webClient = gameObject.AddComponent <UnityWebClient>();

            var postData = new Dictionary <string, string>();

            postData[postName] = postValue;

            _webClient.Post(uri, postData, HandleResponse);
        }