I have a URI which opens a URL in an application (Steam).
String uriString = "steam://openurl/https://steamcommunity.com/profiles/76561198118053054/gcpd/730";
URI uri = new URI(uriString);
With this URI personal data of different games can be displayed in Steam when logged in. If you are not logged in you will be redirected to the profile.
now i would like to read the content directly from the Steam browser since every user is logged in there by default. Otherwise the users would have to log in to their own internet browser before they start the application.
in the Steam browser you can already save the source of the page with right click then there should be a way to automate this.
so how can I read the content of this URI in the Steam Browser?