Using proxy for roblox API (Groups v1)

I want to make a program for my group and for this I use the official Roblox API, and for my purposes the program should send and parse the response as fast as possible, that is, I need to use a proxy. But the API just doesn’t accept requests from proxy servers, throwing a 403 error
is there any way to fix this?

Here is a free an open source proxy that you can use!

There is a template inside of here for the repl.it hosting service that sets it up for you.

Example Usage:
Let’s say you have a custom domain called https://www.mydomain.com/

the HTTP Get Request you would make to this for the group id of 12345678 would be like follows:

game:GetService('HttpService'):GetAsync('https://www.mydomain.com/groups/v2/groups/12345678/')
1 Like