DD
string temp = @"https://api.deladel.ru/prosvet/info?";
string temp1 = "id=";
string value1 = LighterId;
string sb2 = temp + temp1 + value1;
HttpClient client2 = new HttpClient();
HttpResponseMessage response2 = await client2.GetAsync(sb2);
string json5 = await response2.Content.ReadAsStringAsync();
// await DisplayAlert("1", json5.ToString(), "1");
JObject o = JObject.Parse(json5);
var result = JsonConvert.DeserializeObject<ProjectList>(o.ToString());
await DisplayAlert("Message", result.videos[0].title, "Ok");
PopupItems = result.videos;
//MainAccordion.BindingContext = PopupItems;
await DisplayAlert("Message", PopupItems[0].title, "Ok");