UnityでHTTP(GET)通信によるJSONデータ取得
たまに使うことあって、
その都度「どうだったけー?」って悩むので自分用備忘録。
UNityアセットストアから
JSON Object
というアセット をダウンロード
プログラム中、GET通信したいタイミングに
StartCoroutine(connect("https://URL"));
を記述。
こんな感じ
update.cs
void Update() {
//通信したいURLを代入
StartCoroutine(connect("https://URL"));
}
IEnumerator connect(string url){
WWW www = new WWW(url);
yield return www;
print(www.text);
JSONObject json = new JSONObject(www.text);
//powerというkeyのvalueを取得
JSONObject power = json.GetField("power");
print("power is " + power.n); ;
}
Author And Source
この問題について(UnityでHTTP(GET)通信によるJSONデータ取得), 我々は、より多くの情報をここで見つけました https://qiita.com/tatsuya1970/items/afa299a260d09c4672aa著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .