Files
YMhut-box-C-/third_party/MoeKoeMusic/api/module/login_wx_check.js
T

21 lines
532 B
JavaScript

const axios = require('axios');
module.exports = (params, useAxios) => {
const answer = { status: 500, body: {}, cookie: [] };
return new Promise(async (resolve, reject) => {
try {
const resp = await axios({ url: `https://long.open.weixin.qq.com/connect/l/qrconnect?f=json&uuid=${params?.uuid || ''}` });
answer.status = 200;
answer.body = resp.data;
resolve(answer);
} catch (err) {
answer.status = 502;
answer.body = { status: 0, msg: err };
reject(answer);
}
});
}