35 lines
1.0 KiB
JavaScript
35 lines
1.0 KiB
JavaScript
'use strict';
|
|
|
|
var ZaloApiError = require('../Errors/ZaloApiError.cjs');
|
|
var utils = require('../utils.cjs');
|
|
|
|
const getQRFactory = utils.apiFactory()((api, _, utils) => {
|
|
const serviceURL = utils.makeURL(`${api.zpwServiceMap.friend[0]}/api/friend/mget-qr`);
|
|
/**
|
|
* Get QR code for users
|
|
*
|
|
* @param userId User ID or list of user IDs
|
|
*
|
|
* @throws {ZaloApiError}
|
|
*/
|
|
return async function getQR(userId) {
|
|
if (typeof userId == "string")
|
|
userId = [userId];
|
|
const params = {
|
|
fids: userId,
|
|
};
|
|
const encryptedParams = utils.encodeAES(JSON.stringify(params));
|
|
if (!encryptedParams)
|
|
throw new ZaloApiError.ZaloApiError("Failed to encrypt params");
|
|
const response = await utils.request(serviceURL, {
|
|
method: "POST",
|
|
body: new URLSearchParams({
|
|
params: encryptedParams,
|
|
}),
|
|
});
|
|
return utils.resolve(response);
|
|
};
|
|
});
|
|
|
|
exports.getQRFactory = getQRFactory;
|