I would like to begin by mentioning that I am very new to HttpService.
I am attempting to get access to some of my game’s stats such as daily player counts/peaks from within the game itself. It seems that HttpService is the best way to do that. I have seen many examples of getting stats like this by taking them from a website.
One website that I came across is RTrack, which seems to have many different data variants and it seems to have exactly what I need. I decided to use my limited knowledge of HttpService to request data from this page, hoping to get this information. I couldn’t find any JSON data but I could find the data in the HTML, so I requested that and sorted through the string for the data. This worked, or at least to a degree…
My issue is that this website loads the page with default values, then immediately replaces those values with the actual ones when they load. This means that my HttpRequest gets only the default data when the page is first loaded, and not the actual stats of my game. How would I go about getting this data that loads in afterwards? Here is a link to RTrack:
https://v3.rtrack.live/landing
Thanks.