Hi guys! So I have been following this tutorial: How To Make a YouTube Video App - YouTube
I am using the internet trafficking tool to see if I get that initial GET request to the youtube API. My problem is, I get the error at the breakpoint after the call: let dataTask = session.dataTask(with: url!) { (data, response, error) in. In other words, the breakpoint reaches: if error != nil || data == nil {return }.
I’m not sure why that is, I know for a fact that all of my constants are correct (API key, url, playlist ID) because I have tested the url within the browser and I get the returned playlist json data in the browser. I don’t even see the GET request Chris is getting in the trafficking tool. I do see a youtubeapi connect 200 status, but that is all. Any reason why it’s not making the GET request? Is the tutorial outdated to the latest version of Xcode?
Also, I do realize I have this displayed initially in the console: nw_protocol_get_quic_image_block_invoke dlopen libquic failed I’m not sure what this exactly means, or if it is related to the problem at hand.