SwiftyJSON YouTube API

时间:2018-08-24 22:10:26

标签: swift alamofire swifty-json

我正在使用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,
        }
      },
    }

1 个答案:

答案 0 :(得分:1)

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

  

"items" : [

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

  

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