Nhảy tới nội dung

Bắt đầu hỗ trợ ở phiên bản:

  • SDK: 2.11.0

Lấy các thông tin Zalo Mini App.

Parameters

Object object

PropertyTypeDefaultRequiredDescriptionMinimum Version
successfunctionCallback function khi gọi api thành công
failfunctionCallback function khi gọi api thất bại

Return Values

Promise <Object data>

PropertyTypeDescriptionMinimum Version
namestringTên Zalo Mini App
descriptionstringMô tả
versionstringPhiên bản live hiện tại
appUrlstringLink chia sẻ Zalo Mini App
qrCodeUrlstringLink QR của Zalo Mini App

Sample Code

import { getAppInfo } from "zmp-sdk/apis";

getAppInfo({
success: (data) => {
// xử lý khi gọi api thành công
const { name, version } = data;
},
fail: (error) => {
// xử lý khi gọi api thất bại
console.log(error);
}
});

Hoặc

import { getAppInfo } from "zmp-sdk/apis";

const getInfo = async () => {
try {
const { name, version } = await getAppInfo({});
} catch (error) {
// xử lý khi gọi api thất bại
console.log(error);
}
};