Website

Embedding TutAR 3D viewer in a Website

Prerequisites

Embedding the Viewer

The 3D viewer can be embedded into a website by using an iframe. Based on the Subscription mode you choose there are two different ways to embed the viewer.

  • For Vendor-Managed Subscription

<iframe
    src="https://web.tutar.app?api-key=<>&user-id=<>"
    id="3d-viewer"
    allow="camera"
    allowFullScreen ></iframe>
  • For User-Managed Subscription

<iframe
    src="https://web.tutar.app?api-key=<>"
    id="3d-viewer"
    allow="camera"
    allowFullScreen ></iframe>

here since the Authentication is handled by the end user, only API-KEY is required.

Last updated