Hi,
Baselements has the functions BE_HTTP_Response_Code and BE_HTTP_Response_Headers. It does not however have a clear (to me) way of retreiving the response body. Does anyone have an idea how I can retrieve that response with the BE plugin?
Thanks!
When you use the BE_HTTP_POST or BE_HTTP_GET functions, the results from those functions is the response body. It's only if you need to see the response headers or codes that you need to use the other functions.
So if you used: Set Variable [ $Results : BE_HTTP_GET ( $URL ) ], the $Results variable would contain the response body from calling $URL.