I was looking at https://palobby.com/ and wondered how it was made. I see the UI is already accesible through the UI debugger, and I could figure out how to remove certain buttons. But one question; how would I find the URL of the leaderboards UI to make it a website? Sorry if it's a noob question
they probably just uploaded the original html from PA to a webserver - if I had to guess anyway, no guarantees
actually glancing at the source, it seems like the uploaded the entire UI folder system and linked to the page they wanted
Looks like it. I tried to copy the HTML from the leaderboards debugger, but it said i need a developer tool extension to allow clipboard access. Any idea how I could get that?
The relative path in PA is media/ui/main/game/leaderboard/ leaderboard.html specifically, but you will need to look at the other files, and will probably needs stuff from shared and elsewhere. Also, I believe reading that the leaderboard API is only accessible to a logged in user, so you may have to take the risk of including your username and password in the server to make it work.
Or you can just grab data via "proxy" script on your own server. In this case even storing of username/password not required as PlayFab SessionID's are binded to IP address, but they don't expire so you can use same session for very long time.
I am pretty sure there is something going on in the backend of that page so it queries the data from playfab to the palobby.net server first and the "UI" code on palobby.net is modified to ask the palobby.net server instead.