WebRequestResult.JsonTable
"Read-Only"
This property is Read-Only
Name | Type |
---|---|
JsonTable | object |
Description
Response content passed as a Json table. Throws an error if the content could not parse to Json.
Example
-- response content: {"name"="foo", "age"=12}
local response;
Debug:Log(response.name);
Debug:Log(response.age);