Skip to end of banner
Go to start of banner

httpGetResponseInfo

Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 2 Current »

Description

Retrieves the complete response information (if existing) from the latest HTTP routine call.

Return Type

HttpResponseInfo

Example

...
// 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);
...

See also

  • No labels