Parsing get_video_info (YouTube information data) in swift
问题 To get a direct link to YouTube video I made request to get the get_video_info file, in this file that link, but I have to parse it, I find the solution to parse it by PHP but I want to parse it directly from my App I get the data from my code like this: let youtubeContentID = "sZz7tiToK1U" if let infoURL = URL(string:"https://www.youtube.com/get_video_info?video_id=\(youtubeContentID)") { let request = URLRequest(url: infoURL) let session = URLSession(configuration: .default) let task =