SwiftyJSON YouTube API
SwiftyJSON YouTube API
我正在使用 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。 我正在写 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