Nhảy tới nội dung

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

  • SDK: 2.5.3
Lưu ý

Cần xin cấp quyền tại trang Quản lý ứng dụng

Cho phép ứng dụng mở profile của User hoặc Official Account.

Parameters

Object object

PropertyTypeDefaultRequiredDescriptionMinimum Version
typestringtrueNhận các giá trị sau:
  • 'user': Mở profile User
  • 'oa': Mở profile OA
  • 'aliasOA': Mở profile OA bằng Alias (field id truyền lên là alias của OA).
idstringtrueId của User hoặc OA
successfunctionCallback function khi gọi api thành công
failfunctionCallback function khi gọi api thất bại

Sample Code

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

openProfile({
type: "oa",
id: "oa-id",
success: () => {},
fail: (err) => {}
});

// hoặc

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

const handleOpenProfile = async () => {
try {
await openProfile({
type: "oa",
id: "oa-id"
});
} catch (error) {
// xử lý khi gọi api thất bại
console.log(error);
}
};