...
Retrieves the complete response information (if existing) from the latest HTTP routine call.
Return Type
/wiki/spaces/AA/pages/351830229HttpResponseInfo
Example
Code Block |
---|
... // do some http routine call ... HttpResponseInfo respInfo = httpGetResponseInfo(); runnerLog("Http call ended with status: " + respInfo.statusCode); runnerLog("Http response error message: " + respInfo.errorMessage); runnerLog("Http response reason phrase: " + respInfo.reasonPhrase); runnerLog("Class of last http response: " + respInfo.class); ... |
...