Skip to content

Latest commit

 

History

History
16 lines (11 loc) · 523 Bytes

TROUBLESHOOTING.md

File metadata and controls

16 lines (11 loc) · 523 Bytes

If you can't find a solution below, please open an issue.

Table of Contents

Viewing the Request Body

When debugging or testing, it may be useful to examine the raw request body. In the examples/example.php file, after your API call use this code to echo out the statuscode, body and headers:

echo $response->statusCode();
echo $response->body();
echo $response->headers();