1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

UnityでHTTP(GET)通信によるJSONデータ取得

Last updated at Posted at 2020-09-21

たまに使うことあって、
その都度「どうだったけー?」って悩むので自分用備忘録。

UNityアセットストアから
JSON Object
というアセット をダウンロード

Image from Gyazo

プログラム中、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); ;
}

1
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?