Requests to APIs

Hello guys
So I am interacting with the group roblox API service (V1) and I have noticed that when I do a request via Javasipt HTML I get the info of what am looking for. When I run my script I notice that it says that Authorization has been denied for this request. https://groups.roblox.com/docs#!/Groups/get_v1_groups_groupId_audit_log

SO I wish to know how do you login into roblox either via my own account or a bot account from a script so I can get that info.

You can’t use the Roblox API from Roblox. You’ll need to set up a proxy.

Preferably, you should have a middleware that handles requests as required and passes them on, instead of proxying all requests.

2 Likes

but then the proxy should contain the cookie of the account to be able to submit the request?

Yes. Your remote server should be doing everything.

E.g. game server sends request to promote user 1 rank in group A. Proxy sever converts that to an API request and sends it.