Hi! I wish to export 500 of the best selling accessories on the catalog into a module script. In the module I would want the ID as a key with the name of the item as a value. How would I go about accomplishing this?
28Y8
(onses)
February 14, 2021, 7:12pm
#3
To go in the right direction you should probably use Roblox’s API to get the best selling accessories. (Requires a proxy)
Then decode the JSON and store the “name” and “id” in your own table, where ID is a key and name is a value, for each accessory.
I would use the resources below to accomplish this.
Resources:
Yes HttpService doesn’t work for ‘Library Catalog Api’, which is for non wearable items, you need to use a proxy, i got the same problem, I dont know if its the same for ‘Catalog Api’ but if that happened using it means that is for both.
This post helped me achieve that trust check and get the data with a free heroku server, however if you want to use it for a big game, a free proxy may not be enought, hope it helps for everyone looking for.
Is just basically 3 steps
-set a heroku(or any u …
ProxyService
Roblox’s HttpService has always been severely lacking. This open-source project essentially aims to serve as a replacement, providing an Http client that opens the door to actually using REST APIs, reading response headers, reading status codes, accessing roblox.com from in-game, and more.
Example uses are accessing Roblox, Discord, Trello, and Firebase APIs, including crazy stuff like logging into a Roblox account from in Roblox. You can use this for virtually any API.
The way it…
Thank you so much I will look into this.