リクエストで返されるヘッダーの Dictionary
using UnityEngine; using System.Collections; using System.Collections.Generic;
public class ExampleClass : MonoBehaviour { public string url = "https://unity3d.com"; IEnumerator Start() { using (WWW www = new WWW(url)) { yield return www;
if (www.responseHeaders.Count > 0) { foreach (KeyValuePair<string, string> entry in www.responseHeaders) { Debug.Log(entry.Value + "=" + entry.Key); } } } } }
Note when using these code examples you will want to set the WWW Security Emulation Host URL to "https://unity3d.com" in Editor Settings. Failure to do this may give you security exceptions.