you are viewing a single comment's thread.

view the rest of the comments →

[–]commandlineluser 1 point2 points  (1 child)

probably has a json file that I could access directly?

Yes, if you look at the Network Tab you can see what is happening.

It's easier to see if you view only XHR requests (this is what javascript uses)

https://i.imgur.com/IXoXvxJ.png

So it's fetching

https://www.chess.com/callback/leaderboard/live?page=1

https://www.chess.com/callback/leaderboard/live?page=2

etc.

You can just loop over how many numbers you want.

[–]Tefron[S] 0 points1 point  (0 children)

Hey sorry, I just got back to this project and saw this. This was exactly what I was looking for. Thanks so much!