Files
botAffilate/serverNode/node_modules/zca-js/dist/cjs/apis/getFriendRequestStatus.cjs
T

31 lines
1007 B
JavaScript

'use strict';
var ZaloApiError = require('../Errors/ZaloApiError.cjs');
var utils = require('../utils.cjs');
const getFriendRequestStatusFactory = utils.apiFactory()((api, ctx, utils) => {
const serviceURL = utils.makeURL(`${api.zpwServiceMap.friend[0]}/api/friend/reqstatus`);
/**
* Get friend request status
*
* @param friendId friend id
*
* @throws {ZaloApiError}
*/
return async function getFriendRequestStatus(friendId) {
const params = {
fid: friendId,
imei: ctx.imei,
};
const encryptedParams = utils.encodeAES(JSON.stringify(params));
if (!encryptedParams)
throw new ZaloApiError.ZaloApiError("Failed to encrypt params");
const response = await utils.request(utils.makeURL(serviceURL, { params: encryptedParams }), {
method: "GET",
});
return utils.resolve(response);
};
});
exports.getFriendRequestStatusFactory = getFriendRequestStatusFactory;