WWW クラスを使用してフォームを POST するための正しいリクエストヘッダーを返します(読み取り専用)
This field only contains one header, /"Content-Type"/,
which is set to the correct mime type for the form: "application/x-www-form-urlencoded
" for normal
forms and "multipart/form-data
" for forms containing data added using AddBinaryData.
using System.Collections; using System.Collections.Generic; using UnityEngine;
public class Example : MonoBehaviour {
IEnumerator Start () { Dictionary<string, string> headers = new Dictionary<string,string>(); headers.Add("header-name", "header content"); WWW www = new WWW("https://example.com", null, headers); yield return www; Debug.Log (www.text); }
}