From my Angular file, I am sending this request to the server. Is there a way to access it from my typescript file using a HttpClient object?
IncomingMessage {
...
// Headers details omitted for brevity
url: '/teradata/databases/view/djfg',
method: 'GET',
baseUrl: '/api',
originalUrl: '/api/teradata/databases/view/djfg',
params: { '0': 'teradata/databases/view/djfg' },
secret: '<secret>',
cookies: {},
signedCookies: [Object: null prototype] {
_iAToken: '<token>'
},
// More details omitted for brevity
}
When calling an API in the backend, I want to ensure that this message is being sent. Can I access it using the HttpClient object?