What does "HttpError: DnsResolve" mean?

I have this code, and it errors on the sixth line, where the PostAsync is.

local _Http = game:GetService("HttpService")
local Url = "https://www.rproxy.pw/groups/api/change-member-rank"

local function DoPost(GroupId, NewRole, UserId)
	local Query = "groupId=" .. GroupId .. '&newRoleSetId=' .. NewRole .. '&targetUserId=' .. UserId
	local Response = _Http:PostAsync(Url, Query, 2)
end
2 Likes

I think it means the server couldn’t be found (DNS lookup failed). It can’t seem to be reached from my browser either, could the site have shut down?

2 Likes

It means the domain rproxy.pw isn’t on a DNS server. This isn’t a Roblox bug.

3 Likes

Maybe, I got the address from a scriptinghelpers page and didn’t think to check the date…

3 Likes