gpt4 book ai didi

SwiftyJSON YouTube API

转载 作者:行者123 更新时间:2023-11-28 14:19:07 26 4
gpt4 key购买 nike

我正在使用 SwiftyJSON 从 youtube api 检索数据。我正在编写 swift 4 代码。

我正在尝试打印出描述

这是我的:

func getFeedVideos() {
Alamofire.request(API_URL, method: .get, parameters: ["part":"snippet", "playlistId":PLAYLIST_ID,"key":API_KEY], encoding: URLEncoding.default, headers: nil).responseJSON { (response) in

if let value = response.result.value {
let json = JSON(value)

print(json["items"]["snippet"]["description"].stringValue)
}

}
}

但是没有打印出描述。

以下是 youtube API:

  "items" : [
{
"kind": "youtube#playlistItem",
"etag": etag,
"id": string,
"snippet": {
"publishedAt": datetime,
"channelId": string,
"title": string,
"description": string,
"thumbnails": {
(key): {
"url": string,
"width": unsigned integer,
"height": unsigned integer
}
},
"channelTitle": string,
"playlistId": string,
"position": unsigned integer,
"resourceId": {
"kind": string,
"videoId": string,
}
},
}

最佳答案

如果仔细查看响应的第一行,您会注意到以下内容:

"items" : [

[表示items是一个数组,这意味着你应该试试

items[0]["snippet"]["description"].stringValue

关于SwiftyJSON YouTube API,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52012296/

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