Hey developers. I am really new to the HttpService, and I’m trying to get the Id’s of items from our group store page. Going at this for an hour, and I haven’t been able to print out anything, to see if anything is working (trying to print out the ids of each item at our group store). I have used a lot of roblox developer forum posts & the roblox documentation for help, but I still need more. After an hour, this is where my code has lead me, and I still need help:
local service = game:GetService("HttpService")
local Request = service:RequestAsync({
Url = "https://catalog.rprxy.xyz/v2/search/items/details?CreatorTargetId=10987414&CreatorType=2&Limit=10&Subcategory=1",
Method = "GET"
})
local data = service:JSONDecode(Request)
for n, v in ipairs(Request) do
print(n..", "..v) --Nothing will print
end
print("All Done")
Any help is greatly appreciated!