You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
InputStreamurlInput = newURL("https://jsonplaceholder.typicode.com/users").openStream(); //Establishing connection with https://jsonplaceholder.typicode.com/users and getting stream of received data!
25
-
reader.LoadFrom(urlInput); //Parsing url into json!
25
+
reader.LoadFrom(urlInput); //Parsing url stream content into json!
26
26
27
27
Stringuser = "Glenna Reichert"; //User we want to get (Glenna Reichert)!
28
28
StringglennasCompany = reader.getScopesWith("name", user).get(0).getScope("company").getString("name"); //Obtaining first scope that contains variable with users name and getting name of his company as string from it!
0 commit comments