google.com, pub-2203413632152319, DIRECT, f08c47fec0942fa0
func callApi (){ let sessionConfig = URLSessionConfiguration . default let sessionUrl = URLSession ( configuration : sessionConfig) let url = URL ( string : "URL" )! let request: URLRequest = URLRequest ( url :url) let task = sessionUrl. dataTask ( with : request){ (data, response, error) in if error != nil { print (error!. localizedDescription ) } else { do { if let json = try ! JSONSerialization . jsonObject ( with : data!, options : . allowFragments ) as ? [ Any ] { ...