12345678910111213141516171819 |
- let SERVERNAME = 'https://anwi.bizgaze.app';
- const STAT = '05b2f2ca510344968c65e1ebf49a5595';
-
-
-
- async function postStatAPIService(url,data={}){
- let config = {
- url,
- method:'get',
- data:data,
- headers: {
- 'Authorization': `stat ${STAT}`,
- 'Content-Type': 'application/json'
- },
- }
- let response = await axios(config);
-
- return response;
- }
|