Version: 2020.1
言語: 日本語
public byte[] data ;

説明

フォームを送信するときに POST のリクエストボディに渡す生のデータ(読み取り専用)

Usually, you just pass the WWWForm object directly to the WWW constructor, but you will need this variable if you want to change the request headers sent to the web server.

関連項目: headers 変数

using UnityEngine;
using System.Collections;
using System.Collections.Generic;

public class ExampleClass : MonoBehaviour { IEnumerator Start() { WWWForm form = new WWWForm(); form.AddField( "name", "value" ); Dictionary<string, string> 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 using (WWW www = new WWW(url, rawData, headers)) { yield return www; //.. process results from WWW request here... } } }