Skip to content

Community

FRVR.community surfaces the host channel’s “follow / join our official community” prompts. On Facebook this is the Page or Group CTA; on other channels it may no‑op.

if (await FRVR.community.canFollowOfficialPage()) {
  try {
    await FRVR.community.followOfficialPage();
  } catch (err) { /* user dismissed or channel rejected */ }
}
if (await FRVR.community.canJoinOfficialGroup()) {
  await FRVR.community.joinOfficialGroup();
}

Always gate the button on the can… check — showing a “Follow our Page” button that fails on every tap is worse than showing nothing.

Community: CTA availability

loading SDK…