Files
ai_mip/localAPI-main/js-examples/example-query-profile.js
2026-01-13 18:59:26 +08:00

16 lines
297 B
JavaScript

const axios = require('axios');
const config = {
method: 'get',
url: 'http://local.adspower.net:50325/api/v1/user/list?page=1&page_size=100',
headers: { }
};
axios(config)
.then((response) => {
console.log(JSON.stringify(response.data));
})
.catch((error) => {
console.log(error);
});