14 lines
317 B
JavaScript
14 lines
317 B
JavaScript
|
const axios = require('axios')
|
||
|
|
||
|
const getTrivia = async () => axios.get('https://opentdb.com/api.php?amount=10&category=9&difficulty=medium&type=multiple', {
|
||
|
headers: {
|
||
|
Accept: 'application/json, text/plain, */*'
|
||
|
}
|
||
|
})
|
||
|
.then(res => res.data.results)
|
||
|
.catch(console.error)
|
||
|
|
||
|
module.exports = {
|
||
|
getTrivia
|
||
|
}
|