http = game:GetService("HttpService")
b=http:GetAsync("https://catalog.roproxy.com/v1/search/items?category=BodyParts&limit=120&salesTypeFilter=1&sortAggregation=5&sortType=2&subcategory=HairAccessories")
d=http:JSONDecode(b)
local getInfos = {
["items"]= {}
}
for i,v in ipairs(d.data) do
table.insert(getInfos.items,
{
['itemType']=1,
['id']=v.id
}
)
end
print(http:GetAsync("https://catalog.roproxy.com/v1/catalog/items/details",getInfos))
This is most likely a problem with Roproxy. Roblox recently introduced stricter ratelimits on search & economy endpoints, and Roproxy has only gotten more popular. I assume youβre been forbidden because the proxyβs IPs are being ratelimited, but itβs hard to tell without further info.
Is this happening continually? It works fine in the browser, but youβll need to check the message to double check. If itβs still happening, log the response to the console and send it here.