Hello everyone,
I am currently encountering an issue with using HttpService
to access Roblox resources. Whenever I try to use HttpService
to retrieve data from the Roblox catalog API, I get the following error:
HttpService is not allowed to access ROBLOX resources
Here’s the code I’m using to make the API request:
local apiEndpoint = "https://catalog.roblox.com/v1/search/items/details?category=2&subcategory="..subcategory.."&limit=100&sortType=3&sortAggregation=5&maxPrice="..budget
local response = game:GetService("HttpService"):GetAsync(apiEndpoint, true)
I’ve already tried adding the HttpEnabled
property to true
in the game settings, but the error still persists.
Any help or suggestions on how to resolve this issue would be greatly appreciated. Thank you!