requestUpdateZalo
Bắt đầu hỗ trợ ở phiên bản:
- SDK: 2.19.3
Lưu ý
Cần xin cấp quyền tại trang Quản lý ứng dụng
Chủ động điều hướng người dùng tới AppStore/CH Play để cập nhật phiên bản Zalo mới nhất.
Parameters
Object object
Property | Type | Default | Required | Description | Minimum Version |
---|---|---|---|---|---|
success | function | Callback function khi gọi api thành công | |||
fail | function | Callback function khi gọi api thất bại |
Sample Code
import { requestUpdateZalo } from "zmp-sdk/apis";
requestUpdateZalo({
success: (res) => {
// xử lý khi gọi api thành công
},
fail: (error) => {
// xử lý khi gọi api thất bại
console.log(error);
}
});
Hoặc
import { requestUpdateZalo } from "zmp-sdk/apis";
const updateZalo = async () => {
try {
await requestUpdateZalo({});
} catch (error) {
// xử lý khi gọi api thất bại
console.log(error);
}
};