The SWebResponse class returns the result of a HTTP GET/POST request
Any error, will be empty or null if the request was successful
if data.Error == "" or data.Error == nil then
Space.Log("Data Loaded")
Space.Log(data.Response)
else
Space.Log("Error Found")
end
The body text of the webpage response if error is empty or null
if data.Error == "" or data.Error == nil then
Space.Log(data.Response)
end
|