Hi Dan,
I am trying to use your HTML version to view data from my FHIR database in a test environment, so I didn't want to implement the authentication, etc. Is that possible? When I use the HTML it just says "Loading". I can get to the FHIR endpoint from Postman using the same link and I do have Patient 1 posted to FHIR. Here is what the HTML looks like:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link href="https://combinatronics.com/danb7788/fhir-patient-viewer/master/dist/css/..." rel="stylesheet" />
<link href="https://combinatronics.com/danb7788/fhir-patient-viewer/master/dist/css/..." rel="stylesheet" />
</head>
<body>
<div id="fhir-visualizer"></div>
<script>
window.intersystemsUrl = 'http://IP:port/csp/healthshare/fhirdev/fhir/r4/';
window.intersystemsPatientId = 1;
</script>
<script src="https://combinatronics.com/danb7788/fhir-patient-viewer/master/dist/js/f..."></script>
<script src="https://combinatronics.com/danb7788/fhir-patient-viewer/master/dist/js/f..."></script>
</body>
</html>
This looks really cool. Any help would be appreciated.
Thanks.
That works great. Thank you for pointing me in the right direction.