gpt4 book ai didi

ios - 解析 YouTube JSON 的两部分

转载 作者:行者123 更新时间:2023-11-28 19:55:15 24 4
gpt4 key购买 nike

我有以下 youtube JSON,我正在尝试解析它,以便我可以访问标题、描述等内容... https://gdata.youtube.com/feeds/api/videos?q=remedyLIVE&max-results=5&v=2&alt=jsonc&orderby=published

现在我将它放入字典中,它返回两个值/键对。一个用于 api,另一个用于其他一切。

我将在下面附上我的代码,但我知道它很接近但不太正确。任何人都可以提供有关如何解析此 json 的具体示例吗?我找不到任何很好的例子来说明这是如何完成的,所以如果有人可以帮助我访问这些值,那就太棒了。我花了无数时间阅读 JSON 教程,但我仍然无法弄清楚它如何适用于我正在做的事情。谢谢!!

    NSURL *youtubeURL = [NSURL URLWithString:@"https://gdata.youtube.com/feeds/api/videos?q=remedyLIVE&max-results=5&v=2&alt=jsonc&orderby=published"];


NSData *data = [NSData dataWithContentsOfURL:youtubeURL];
if (data == nil)
{
NSLog(@"data is nil");
}
else
{
NSError *error;
titleArray = [[NSMutableArray alloc]init];
videoIDArray = [[NSMutableArray alloc]init];
thumbArray = [[NSMutableArray alloc]init];

videoDictionary = [NSJSONSerialization JSONObjectWithData:data options:kNilOptions error:&error];
NSLog(@"%@", videoDictionary);




}


}

最佳答案

试试这个:enter image description here

+(void)json{

NSURL *youtubeURL = [NSURL URLWithString:@"https://gdata.youtube.com/feeds/api/videos?q=remedyLIVE&max-results=5&v=2&alt=jsonc&orderby=published"];


NSData *data = [NSData dataWithContentsOfURL:youtubeURL];
NSError *error;
NSDictionary *dic_JSON =
[NSJSONSerialization JSONObjectWithData: data
options: NSJSONReadingMutableContainers
error: &error];




}

关于ios - 解析 YouTube JSON 的两部分,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26899940/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com