Hi guys,
I’ve been toying with a botkit starter kit and got it to work quite well until today: do you know why my fetch request are failing today with this getaddringo error?
Looks like a DNS issue on Glitch servers, but I may have missed something.
My code is nothing fancy:
fetch(‘https://opentdb.com/api.php?amount=1&difficulty=medium&type=multiple’)
.then(function (res) {return res.json()})
.then(function(json) {trivia = json.results[0]})
And it worked well all past week, I don’t understand why it started failing today…
Any idea or advice on how to fix this issue would be really appreciated!