Getting all info about the clothing in my group

  1. What do you want to achieve?
    print all the info of the clothing i sell in my group
    id, price, creator, etc…
    (to later tell players how many they have bought from my group)
  1. What is the issue? Include screenshots / videos if possible!
    i got an error ‘Trust check failed’ but i don’t know how to fix it

  2. What solutions have you tried so far?
    i tried looking up if i needed a proxy server or something but couldn’t find anything

local HttpService = game:GetService("HttpService")

local GroupInfoUrl = "https://catalog.roblox.com//v1/search/items/details?Category=3&CreatorType=2&IncludeNotForSale=true&Limit=30&CreatorTargetId=8545319" -- all group Items

print(HttpService:JSONDecode(HttpService:GetAsync(GroupInfoUrl)))
3 Likes

You do need a proxy.

You cannot issue a direct request to any roblox.com page with the HttpService methods.

https://developer.roblox.com/en-us/api-reference/class/HttpService

  • Requests cannot be made to any Roblox website, such as www.roblox.com.
2 Likes