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

How to Gather Permission?

Asked by 8 years ago

How would I gather permission from a website that has to have special permissions?

Input:

print(game:GetService("HttpService"):GetAsync("http://www.roblox.com/My/Groups.aspx?gid=2672295"))

Output:

13:47:09.082 - http://www.roblox.com/My/Groups.aspx?gid=2672295: Trust check failed, The operation completed successfully.

3 answers

Log in to vote
2
Answered by 8 years ago

You cannot access the roblox website through httpservice, but you can access their proxy, which is rproxy.pw.

So, the correct way you would want to do this is:

print(game:GetService("HttpService"):GetAsync("http://rproxy.pw/My/Groups.aspx?gid=2672295"))

Ad
Log in to vote
2
Answered by 8 years ago

This is because the HTTPService restricts access to roblox for security reasons, to bypass this you can use the roblox proxy which is rproxy.pw

Log in to vote
1
Answered by 8 years ago

Another solution is to create your own proxy.

Answer this question