In internet, I see only add parameter to HTTP request like below.
this.headers.append('Content-Type', 'application/json');
this.headers.append('Accept', 'application/json');
this.headers.append('Access-Control-Allow-Credentials', 'true');
I cannot find how can I get HTTP request header params in Angular 4.
The Headers class also has a get(name: string) method, which returns a string, as well as other helpful methods for inspecting the headers. From the Angular docs:
https://angular.io/api/common/http/HttpHeaders
You could also use your browser's developer tools to inspect the request/response headers.
EDIT: It might be helpful if you specify exactly what it is you need to do. Is there a particular header that you need to inspect?
EDIT2: There's also the deprecated Headers class. Not sure which you're using, but there's a lot of overlap in terms of the methods available so it may not even matter.
https://angular.io/api/http/Headers