4
This morning I updated my Google Chrome, on Ubuntu.
When I went to do a test on the part of the system (place) where we took a picture of the webcam
, instead of displaying the authorization message to access the webcam
, I received the following message in the browser console:
getUserMedia() is deprecated on insecure Origins, and support will be Removed in the Future. You should consider switching your application to a Secure origin, such as HTTPS.
Which translating is
getUserMedia() is obsolete on unsafe origins and support will be removed in the future. You should consider changing your application to a secure source such as HTTPS.
All the systems I use getUserMedia
must be amended to HTTPS
on account of that?
What is the reason for removing the getUserMedia
in non-https locations?
Updating
I get this message today on my Google Chrome:
getUserMedia() no longer Works on insecure Origins. To use this Feature, you should consider switching your application to a Secure origin, such as HTTPS
Already blocking use of user’s camera/microphone capture functionality.
And yet I would like to know what is the danger of using these resources in non-https connections (I don’t like to say "insecure").