观看条件 - 白名单观看
Last updated
Last updated
// 执行白名单授权
async function toDoAuthPhone(phone) {
const result = await watchCore.auth.verifyPhoneAuth({
phone,
});
if (result.success) {
await handleAuthVerifySuccess(result);
} else {
await handleAuthVerifyFail(result);
}
}