请,我正在努力使用Postman,并且正在尝试制作OAuth 2.0密钥,但它不起作用。
我正在使用Node.js,并跟随https://synthea.mitre.org/fhir-api
我不断收到401错误。
var client = mkFhir({// JvMX1UBmjgTx6D9QWn8AZbN7wz5Mmbrm
baseUrl: "https://syntheticmass.mitre.org/v1/fhir/Patient?_count=1&apikey=JvMX1UBmjgTx6D9QWn8AZbN7wz5Mmbrm"
});
客户端
.search( {type: 'Patient', query: {'birthDate': '1943-06-08'}})
.then(function(res){
var bundle= res.data;
var count= (bundle.entry && bundle.entry.length) || 0;
console.log("#Patients born in 1943: ", count);
})
.catch(function(res){
//error responses
if(res.status){
console.log('Error',res);
}
if(res.message){
console.log('Error',res.message);
}
});