No Description
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

apiservice.js 410B

12345678910111213141516171819
  1. let SERVERNAME = 'https://anwi.bizgaze.app';
  2. const STAT = '05b2f2ca510344968c65e1ebf49a5595';
  3. async function postStatAPIService(url,data={}){
  4. let config = {
  5. url,
  6. method:'get',
  7. data:data,
  8. headers: {
  9. 'Authorization': `stat ${STAT}`,
  10. 'Content-Type': 'application/json'
  11. },
  12. }
  13. let response = await axios(config);
  14. return response;
  15. }