
freeman
Members-
Content Count
4 -
Joined
-
Last visited
-
You cannot force page to fullscreen in Android Chrome. Page must have JS code like: document.webkitRequestFullscreen() https://developer.mozilla.org/ru/docs/DOM/Using_fullscreen_mode If you can't edit code, try over apps for Android. For example: https://play.google.com/store/apps/details?id=com.isolator.fullscreenbrowser2 or https://play.google.com/store/apps/details?id=de.ozerov.fully
- 92 replies
-
- RemoteSensor
- Safari
-
(and 8 more)
Tagged with:
-
Thank You! Every thing works perfectly. SSE now can be accessed from any origin. JSONP api is great. Next week I'll end up my project and share all sources here. Right now it looks like this:
- 92 replies
-
- RemoteSensor
- Safari
-
(and 8 more)
Tagged with:
-
Yes yes yes! I want to build custom RemoteSensor Panel using HTML. Javascript EventSource request can be blocked by browser, in order to Same Origin Policy. To make it work JS must have extra parameter: withCredentials: true So, if IP of target machine is 192.168.1.2 JS would look like this: var source = new EventSource("http://192.168.1.2/sse", { withCredentials: true }); Server (AIDA64 on target machine) should answer with extra headers: Access-Control-Allow-Origin: * Access-Control-Allow-Credentials: true Access-Control-Expose-Headers: * - it's just
- 92 replies
-
- RemoteSensor
- Safari
-
(and 8 more)
Tagged with:
-
I want to build custom panel using RemoteSensor. Please add headers in your http://localhost/sse Access-Control-Allow-Origin: * Access-Control-Expose-Headers: * Access-Control-Allow-Credentials: true Or make open API for AJAX requests please
- 92 replies
-
- RemoteSensor
- Safari
-
(and 8 more)
Tagged with: