UNPKG

@warriorteam/zalo-personal

Version:

Unofficial Zalo Personal API for JavaScript - A powerful library for interacting with Zalo personal accounts with URL attachment support

38 lines (34 loc) 1.28 kB
'use strict'; var ZaloApiError = require('../Errors/ZaloApiError.cjs'); var utils = require('../utils.cjs'); const addQuickMessageFactory = utils.apiFactory()((api, ctx, utils) => { const serviceURL = utils.makeURL(`${api.zpwServiceMap.quick_message[0]}/api/quickmessage/create`); /** * Add quick message * * @param addPayload - The payload containing data to add the quick message * * @note Zalo might throw an error with code 821 if you have reached the limit of quick messages. * * @throws ZaloApiError */ return async function addQuickMessage(addPayload) { const params = { keyword: addPayload.keyword, message: { title: addPayload.title, params: "", }, type: 0, 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.addQuickMessageFactory = addQuickMessageFactory;