79740928

Date: 2025-08-20 10:10:50
Score: 2
Natty:
Report link

Chek your Permission-Policy header.

Chrome header screen shot

If it is set to camera=() then it will blocks access to the camera. Either you remove this header value from the response (alternatively pass empty string) or add this header with a value of camera(self) from the backend e.g. from php backend set the below header to the response.

$headers = [];
$headers['Permissions-Policy'] = 'camera=(self), microphone=(self)';

After that, verify it from the header respnonse,

Chrome header after setting Permission-Policy

Hope this will work.

Reasons:
  • Probably link only (1):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: Md Shahbaz Ahmad