フォームを送信するときに POST のリクエストボディに渡す生のデータ(読み取り専用)
一般的には WWW コンストラクターには WWWform オブジェクトを渡しますが、
Web サーバーに送信するリクエストヘッダーを変更したい場合にはこの変数を使わなければいけません。
関連項目: headers 変数
var form = new WWWForm(); form.AddField( "name", "value" ); var headers = form.headers; var rawData = form.data; var url = "www.myurl.com";
// Add a custom header to the request. // In this case a basic authentication to access a password protected resource. headers["Authorization"]="Basic " + System.Convert.ToBase64String( System.Text.Encoding.ASCII.GetBytes("username:password"));
// Post a request to an URL with our custom headers var www = new WWW(url, rawData, headers); yield www; //.. process results from WWW request here...
WWWForm form = new WWWForm(); form.AddField( "name", "value" ); Hashtable headers = form.headers; byte[] rawData = form.data; string url = "www.myurl.com";
// Add a custom header to the request. // In this case a basic authentication to access a password protected resource. headers["Authorization"] = "Basic " + System.Convert.ToBase64String( System.Text.Encoding.ASCII.GetBytes("username:password"));
// Post a request to an URL with our custom headers WWW www = new WWW(url, rawData, headers); yield return www; //.. process results from WWW request here...