Hi, I’m trying to send an HTTP request to Marketplace but it doesn’t work, and it gives me an error, the error is: HttpError: DnsResolve. Here’s the code:
local httpService = game:GetService("HttpService")
function GetMarketProductInfo(id)
local response = httpService:GetAsync("http://marketplace.rprxy.xyz/marketplace/productinfo?assetId=" .. id);
return httpService:JSONDecode(response)
end
local response = GetMarketProductInfo(2124439922)