myqrcode.js
513 Bytes
'use strict';
const api = global.yoho.API;
const crypto = global.yoho.crypto;
const PASSWORD = 'yoho9646yoho9646';
exports.getQr = (params) => {
let uid = '';
try {
uid = crypto.decrypt(PASSWORD, decodeURIComponent(params.token));
} catch (e) {
console.error(e);
uid = params.token;
}
return api.get('', {
method: 'app.twoDimen.getCode',
uid: uid,
}).then(result => {
return (result && result.data && result.data.code) || '';
});
};