Skip to content

Latest commit

 

History

History
16 lines (11 loc) · 526 Bytes

TROUBLESHOOTING.md

File metadata and controls

16 lines (11 loc) · 526 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 status code, body, and headers:

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