BadDad2004
(BadDad2004)
December 2, 2021, 5:15am
6
I used the following articles to do exactly this to be able to search the Library API for songs in Poop Simulator , using an external proxy hosted on Google servers for free (up to 10K daily hits):
[2021 Edit]: It has been several years since I have touched this, and I have only used it for small-scale applications on Roblox. I can’t recommend this for a large game, especially long-term since it abruptly stopped working for that project after a year. Do not expect replies from me about this if you ping me about it.
(Thanks to Brad_Sharp for helping me with the JavaScript code)
This tutorial is about a simple idea: Using the www.roblox.com and api.roblox.com web APIs without having to pay…
Accessing the Roblox Web API
The Roblox API is extremely powerful - it can be used to create anything from group ranking bots to game statistics websites.
As a developer, there are two main ways you’ll want to access the Roblox API: sending the requests yourself or using one of the multiple wrappers for your favorite programming language. In this tutorial, I’ll go over both of these methods.
Notes
This tutorial currently offers Python code examples. To contribute and add a programmin…