Getting 401 error with OHIF viewer with google healthcare embedded in angular application

Can any one explain I’ll try to integrate OHIF viewer as embedded in my angular application but I’m getting 401 error. Is their any way to pass bearer token inside servers config when we make request. For better understanding I’ve upload my sample code
window.OHIFViewer.installViewer(
{
servers: {
dicomWeb: [
{
wadoUriRoot: 'https://healthcare.googleapis.com/v1beta1/projects/dicomWeb
qidoRoot: same as wadoUriRoot
wadoRoot: same as wadoUriRoot
qidoSupportsIncludeField: true,
imageRendering: ‘wadors’,
thumbnailRendering: ‘wadors’,
}
],
},
}, containerId);

need to include OIDC, see sample:

window.config = {
routerBasename: ‘/’,
enableGoogleCloudAdapter: true,
healthcareApiEndpoint: ‘https://healthcare.googleapis.com/v1’,
servers: {
// This is an array, but we’ll only use the first entry for now
dicomWeb: ,
},
// This is an array, but we’ll only use the first entry for now
oidc: [
{
// ~ REQUIRED
// Authorization Server URL
authority: ‘https://accounts.google.com’,
client_id: ‘YOURCLIENTID.apps.googleusercontent.com’,
redirect_uri: ‘/callback’, // OHIFStandaloneViewer.js
response_type: ‘id_token token’,
scope:
‘email profile openid https://www.googleapis.com/auth/cloudplatformprojects.readonly https://www.googleapis.com/auth/cloud-healthcare’, // email profile openid
// ~ OPTIONAL
post_logout_redirect_uri: ‘/logout-redirect.html’,
revoke_uri: ‘https://accounts.google.com/o/oauth2/revoke?token=’,
automaticSilentRenew: true,
revokeAccessTokenOnSignout: true,
},
],
studyListFunctionsEnabled: true,
};