Hello,
I am also getting the same error that has been already reported here.
The error is from the "index.html" file
<script>
extractData().then(
//Display Patient Demographics and Observations if extractData was success
function(p) {
drawVisualization(p);
},
//Display 'Failed to call FHIR Service' if extractData failed
function() {
$('#loading').hide();
$('#errors').html('<p> Failed to call FHIR Service </p>');
}
);
</script>
If you check the Network Tab you will find that the error is "Invalid Token".
Screenshot attached.
So if the Authorization is successful and the Cerner Authorization server
returns a Token, and that token is used in subsequent API call, then why
is the token considered invalid?
Regards,
Diptendu Dutta