Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

HTTPService 'Trust Check Failed' ?

Asked by 10 years ago

I tried posting to my friend's website, but I keep getting the error 'Trust Check Failed' (and yes, I have inserted HTTPService and checked 'HTTPEnabled')

This is my code:

local http = game:GetService("HTTPService")

local info = {
    ["Message"] = "HI!!!"
}

local json = http:JSONEncode(info)

http:PostAsync("http://pirates-online-rewritten.com/test.php", json)

1
First, make sure the website has HTML enabled with php, since that is occasionally an issue. Possibly try using https instead of http as well, since I know that's usually regarded as safer, and might trick the ROBLOX engine. RoboFrog 400 — 10y

Answer this question