Axios
De Banane Atomic
Aller à la navigationAller à la recherche
Links
Client side
<script src="https://cdn.jsdelivr.net/npm/axios/dist/axios.min.js"></script> <script> const axios = window.axios; </script> |
Authentication
axios.get(url, { auth: { username: 'xxx', password: 'yyy' } }) .then(function (response) { }); |