func obtenerMascotas(){
if let url = URL(string:"https://my.api.mockaroo.com/mascotas.json?key=ee082920"){
do {
let bytes = try Data(contentsOf: url)
let tmp = try JSONSerialization.jsonObject(with: bytes)
print(tmp)
}
catch {
print("no se pudo obtener la info desde el feed de mascotas \(error.localizedDescription)")
}
}
}
No hay comentarios:
Publicar un comentario