28 lines
983 B
JavaScript
28 lines
983 B
JavaScript
import { ZaloApiError } from "../Errors/ZaloApiError.js";
|
|
import { apiFactory } from "../utils.js";
|
|
export const changeFriendAliasFactory = apiFactory()((api, ctx, utils) => {
|
|
const serviceURL = utils.makeURL(`${api.zpwServiceMap.alias[0]}/api/alias/update`);
|
|
/**
|
|
* Change friend's alias
|
|
*
|
|
* @param alias new alias (nickname - bietdanh)
|
|
* @param friendId friend id
|
|
*
|
|
* @throws {ZaloApiError}
|
|
*/
|
|
return async function changeFriendAlias(alias, friendId) {
|
|
const params = {
|
|
friendId: friendId,
|
|
alias: alias,
|
|
imei: ctx.imei,
|
|
};
|
|
const encryptedParams = utils.encodeAES(JSON.stringify(params));
|
|
if (!encryptedParams)
|
|
throw new ZaloApiError("Failed to encrypt params");
|
|
const response = await utils.request(utils.makeURL(serviceURL, { params: encryptedParams }), {
|
|
method: "GET",
|
|
});
|
|
return utils.resolve(response);
|
|
};
|
|
});
|