I’m having issues with HTTP Service and I don’t know what the problem is. I’m new to using this API and I used this post as reference. The error I’m getting is HTTP 404 (Not Found).
my code:
local http = game:GetService("HttpService")
local link = "https://games.roproxy.com/v1/badges/2149041932"
local data = http:JSONDecode(http:GetAsync(link))
print(data)
If anyone can explain how I can properly use this, please do.