Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
2

How to access your Roblox inventory from Roblox Studio?

Asked by
RoyMer 301 Moderation Voter
4 years ago

I have been trying to access my Roblox inventory from Roblox Studio to use the data for a plugin I am working on but I had figured out that you are not allowed to access the Roblox Web API from Roblox Studio using the HttpService (https://inventory.roblox.com/docs#/)

During my research, I came across two terms which are 'proxy server' and 'localhost' but I am unsure what they mean. Thinking about it, since I intend on using the Roblox Web API solely in Roblox Studio I think that 'localhost' is what I am looking for but I am confused.

How will I access my Roblox inventory from Roblox Studio?

1 answer

Log in to vote
1
Answered by 4 years ago

Localhost is not what you Need. Localhost reffers to your local IP adress (127.0.0.1).

What you Need is a Proxy Server. What's that, you are asking.

Because you can't acces the API directly you have to take the detour.

You are sending the request to a web Server, the Proxy Server, the Proxy Server sends the request to the Roblox API. You can use a public Proxy like http://rprxy.xyz/ or host your own on your own Server with this. https://github.com/sentanos/rprxy

0
I will try use the public Proxy Server RoyMer 301 — 4y
0
Does it still work? RoyMer 301 — 4y
0
How would I convert this request into a proxy server request? https://inventory.roblox.com/v2/users/64683495/inventory/1?limit=10&sortOrder=Asc RoyMer 301 — 4y
1
Just replace roblox with rprxy.xyz. For example: http://inventory.rprxy.xyz/v2/users/64683495/inventory/1?limit=10&sortOrder=Asc Sonnenroboter 336 — 4y
View all comments (2 more)
0
HTTP 403 (HTTP 403 (Forbidden)) when tried in studio RoyMer 301 — 4y
0
Oh it must have been because my inventory is private, tried it on a public inventory and it worked. Thanks! RoyMer 301 — 4y
Ad

Answer this question