31

So I've made a WebRTC screen sharing app as a self-hosted alternative to Chrome Remote Desktop and other common remote desktop / game streaming services.

My dilemma isn't navigator.mediaDevices undefinded. Whenever I launch the app over a file:/// scheme it works perfectly; the same with https:// as mentioned within Mozilla's docs. But the problem is I don't want to host it as it has a few major security issue(s). So how would I host it on 192.168.XXX.XXXX without it giving the error? (I would like to host it on my local network so I can test it on other mobile devices.)

MilkyDeveloper
  • 420
  • 1
  • 5
  • 12
  • did you achieve it using a mobile device and connecting it to the host via lan network in 192.168.xxx.xxx?? I can't make it work since i don't know how to secure it in safari or other mobile browsers – GmloMalo Jun 03 '21 at 13:41
  • 1
    I eventually gave up on this project for other reasons, but I retried it using the answers below and it worked perfectly. See: https://stackoverflow.com/a/60964352/11849788 – MilkyDeveloper Jun 03 '21 at 15:36

2 Answers2

47

APIs with functions like getUserMedia, getDisplayMedia and enumerateDevices require a secure context, access to these from http: origins has been removed in Chrome back in 2019

For development, the easiest solution may be to create a self-signed certificate.

--UPDATE--

For development the easiest solution is to run from localhost, as that's considered secure - see https://blog.mozilla.org/webrtc/camera-microphone-require-https-in-firefox-68/ and https://w3c.github.io/webappsec-secure-contexts/#localhost

Comment from: Vlad Dinulescu

Philipp Hancke
  • 13,786
  • 1
  • 22
  • 28
  • 4
    Actually, for development the easiest solution it to run from http://localhost, as that's considered secure - see https://blog.mozilla.org/webrtc/camera-microphone-require-https-in-firefox-68/ and https://w3c.github.io/webappsec-secure-contexts/#localhost – Vlad Dinulescu Nov 23 '20 at 13:18
25

in mozilla developer go to about:config set to true media.devices.insecure.enabled and media.getusermedia.insecure.enabled

Akif Kara
  • 263
  • 4
  • 9
  • 1
    The answer I've accepted is technically correct, but this one is very useful for rapid prototyping. I would recommend this if you are unable to host on localhost like the above answer. – MilkyDeveloper Mar 13 '21 at 01:20
  • MilkyDeveloper - you can't use your localhost server on other devices – mka Apr 03 '21 at 20:02
  • I was losing my mind for a while trying `about:config` in Chrome and Brave, but that page only seems to exist in Firefox. – Ryan Apr 09 '21 at 12:30