axios example
HTML
<script src="https://unpkg.com/[email protected]/dist/axios.js"></script>
JavaScript
var root = 'https://53f7877f.ngrok.io/ping'
// Make a GET request
axios.get(root)
.then((data) => {
console.log('data', data)
})
.catch((e) => {
console.log('error', e)
})
axios.get('https://jsonplaceholder.typicode.com/users').then((res) => {
console.log(res)
})