This morning I updated my Google Chrome on Ubuntu.
When I went to test the part of the system (local) where we took a picture of webcam
, instead of displaying the authorization message to access webcam
, I received the following message in the browser console: p>
getUserMedia () is deprecated on insecure origins, and support will be removed in the future. You should consider switching your application to secure origin, such as HTTPS.
Translating is
getUserMedia () is obsolete about the unsafe sources and support will be removed in the future. You should consider moving your application to a secure source, such as HTTPS.
Do all systems that use getUserMedia
have to be changed to HTTPS
because of this?
What is the reason for removing support for getUserMedia
on non-https sites?
Update
I get this message on my Google Chrome today:
getUserMedia () no longer works on insecure origins. To use this feature, you should consider switching your application to secure origin, such as HTTPS
Already blocking the use of the camera's capture / microphone functionality.
And yet I'd like to know the danger of using these features on non-https connections (I do not like to say "unsafe").