Problem with httpsservice function

I have a problem with https function


i tried search information but i dont find nothing

local HS = game:GetService("HttpService")

local GroupId = 3846471
local Url = "https://catalog.roblox.com/v1/search/items/details?CreatorType=2&CreatorTargetId="
local Info = HS:GetAsync(Url..GroupId , true)
1 Like

You can’t call the roblox.com domain using HttpService

1 Like

then what should try with the httpsservice getasync to get the catalog info?

1 Like

Your best bet is to program a webserver to handle this, and then send that data to the game

1 Like

You can use a proxy to do this, this appears to already be documented on the devforum, so try checking this out [or looking up how to make a proxy]

1 Like