HttpService Roblox API Blocked (Proxy)

Hello devform member. I am currently working on creating a script that detects if a player has an account on the dev form. Only the roblox http service blocks requests from its own server. So I would like to know if you know of any proxy other than https://rprxy.xyz/ because this one has nothing for the devForm

I am currently using https://devforum.roblox.com/u/PlayerNAME.json for the get request

3 Likes

Hello. It would help us to review your code, so we can tell where’s the issue.

1 Like

Here is my code, finally, the problem is more that roblox prevents requests on their own server. I need to know if you know any technique to bypass

local HttpService = game:GetService("HttpService")
local Players = game:GetService("Players")
local URL
Players.PlayerAdded:Connect(function(plr)
	URL = "https://devforum.roblox.com/u/"..plr.Name..".json"

	if printData(plr) then
		print("Success")
	else
		print("Something went wrong")
	end
end)

function printData(plr)
	local response
	local data
	-- Use pcall in case something goes wrong
	pcall(function ()
		response = HttpService:GetAsync(URL)
		data = HttpService:JSONDecode(response)
	end)
	-- Did our request fail or our JSON fail to parse?
	if not data then return false end

	if data.user.username == plr.Name then
		return true
	end
	return false
end
2 Likes

Ho, i found the solution. i used https://devform.rprxy.xyz/ instead of https://devforum.rprxy.xyz/ on the proxy

*Also, i finally make my own proxy using a open source project.

2 Likes