On a browser, i can go to http://hostname/swagger/index.html and see the different definitions of the exposed API. However, using a webclient instance or a httpclient, i do not get the same content as the one on the browser.
I understand that when using a browser, there's a javascript script that gets executed on page loads which basically renders the the content of the page. How do i get the same bit of information if i am trying to do it through code?
The code that we're developing is suppose to monitor any changes in the API. If we detect changes in any of the APIs exposed, it should trigger notification / workflow on our side to confirm that the clients using those API's are not impacted.
Thanks in advance