SWebResponse
Index
Properties Index
| Property Name |
|---|
| string Error |
| string Response |
Properties
Error
string Error get
Any error, will be empty or null if the request was successful
- Lua
function ResponseFunction(responseData)
stringError = responseData.Error
end
Space.WebServices.Get('aURL', ResponseFunction)
Response
string Response get
The body text of the webpage response if error is empty or null
- Lua
function ResponseFunction(responseData)
stringResponse = responseData.Response
end
Space.WebServices.Get('aURL', ResponseFunction)