-
Notifications
You must be signed in to change notification settings - Fork 0
/
launch-smart-sandbox.html
33 lines (31 loc) · 1.29 KB
/
launch-smart-sandbox.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
<!DOCTYPE html>
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<!--
Temporarily disable cerner-smart-embeddable-lib
<link rel='stylesheet' type='text/css' href='./lib/css/cerner-smart-embeddable-lib-1.0.0.min.css'>
-->
<title>Example-SMART-App</title>
</head>
<body>
<!-- Required JS files to enable this page to embed within an MPage -->
<!--
Temporarily disable cerner-smart-embeddable-lib
<script src='https://cdnjs.cloudflare.com/ajax/libs/babel-polyfill/6.26.0/polyfill.min.js'></script>
<script src='./lib/js/cerner-smart-embeddable-lib-1.0.0.min.js'></script>
-->
<!-- FHIR Client JS Library -->
<script src='./lib/js/fhir-client.js'></script>
<!-- Prevent session bleed caused by single threaded embedded browser and sessionStorage API -->
<!-- https://github.com/cerner/fhir-client-cerner-additions -->
<script src='./lib/js/fhir-client-cerner-additions-1.0.0.js'></script>
<script>
FHIR.oauth2.authorize({
'client_id': 'cdbde0f6-fc66-4255-9d77-a9d73b17da1f',
'scope': 'patient/Patient.read patient/Observation.read launch online_access openid profile'
});
</script>
</body>
</html>