UNPKG

@warriorteam/zalo-personal

Version:

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

11 lines (10 loc) 409 B
import { apiFactory } from "../utils.js"; export const fetchAccountInfoFactory = apiFactory()((api, _, utils) => { const serviceURL = utils.makeURL(`${api.zpwServiceMap.profile[0]}/api/social/profile/me-v2`); return async function fetchAccountInfo() { const response = await utils.request(serviceURL, { method: "GET", }); return utils.resolve(response); }; });