Me estresa mucho ver el código en php.
Les dejo unas instrucciones si quieren usar Javascript
- En una carpeta vacia ejecuta en terminal npm init --yes
- Ejecuta npm i axios
- En un archivo llamado index.js copia el siguiente código
const axios = require('axios')
const url = 'https://xkcd.com/info.0.json'
axios.get(url)
.then(res => console.log(res.data))
.catch(err => console.log(err))
Respuesta:
{
"month": "12",
"num": 2238,
"link": "",
"year": "2019",
"news": "",
"safe_title": "Flu Shot",
"transcript": "",
"alt": "\"Wait, how often are you getting bitten by snakes? And why are you boiling water?\" \"Dunno, the CDC people keep showing up with complicated questions about the 'history of the property' and 'possible curses' but I kinda tune them out. At least one of them offered me the flu shot.\"",
"img": "https://imgs.xkcd.com/comics/flu_shot.png",
"title": "Flu Shot",
"day": "6"
}
¿Quieres ver más aportes, preguntas y respuestas de la comunidad?