When accessing the site we get json object
{ userId: 32, firstName: "Алексей", lastName: "Голобурдин", address: { country: "Россия", city: "Москва" }, phone: "8 (905) 777 77 77" } how to parse it with jsoup
JSONObject obj=new JSONObject(); obj = Jsoup.connect(URL).ignoreContentType(true).execute().body(); gives an error message.