openProfile
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
Property | Type | Default | Required | Description | Minimum Version |
---|---|---|---|---|---|
type | string | true | Nhận các giá trị sau:
| ||
id | string | true | Id của User hoặc OA | ||
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 { 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);
}
};