I have an angular page and is being rendered through a component - say DashboardComponent. A third party site redirects to my angular page and set some information, like userId, in the header(not in the url parameter).
Now I would like to know that how will I fetch this header information in my angular component (or in angular project also will do if there is a proper way to do so.)?
My thought goes to might be we can get it from index.html, but its being an html file, I am not sure if this is possible.
Please help in this.