HttpError: TlsVerificationFail

I’m trying to get the list of outfits a player currently has using RoProxy, but it gives me this error:

HttpError: TlsVerificationFail - Server

This is the code that I am using to get the data:

local data =  HttpService:JSONEncode(HttpService:GetAsync("https://avatar.roproxy.com/v1/users/" .. id .. "/outfits?page=1&itemsPerPage=50"))
print(data)

This means you are using an API that uses TLS 1.0 or 1.1.

HttpService removed support for TLS 1.0 and 1.1 earlier this year.

2 Likes

You can only make requests to secure sites (https) so that error means that roblox couldn’t enstabilish a secure connection with roproxy. Maybe they roproxy is having issues with their certificate.

1 Like