|
|
|
|
|
by gruez
601 days ago
|
|
>I'm wondering if more instructions on the QR code or the page for the doorbell would work better? In general you should display a prompt explaining why a permission is needed (eg. "we need access to your camera to camera to take a picture to send to the owner, click allow on the next screen to allow."), and only ask for permissions after the user accepts the first prompt. However in this particular case you shouldn't have to request camera access directly. Using <input type="file" accept="image/*" capture="user> will display an system interface (ie. from the browser or OS) to allow the user to take/select an existing picture. It also already has preview and front/back camera selector built in, so you don't have to implement that yourself. https://developer.mozilla.org/en-US/docs/Web/HTML/Attributes... |
|