Skip to content

Commit f7d93dc

Browse files
committed
Update example without library to display results of request
1 parent 0702d0e commit f7d93dc

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

TROUBLESHOOTING.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,11 @@ $curl_error_code = curl_errno($ch);
4848
$curl_error_message = curl_error($ch);
4949
$http_status_code = curl_getinfo($ch, CURLINFO_HTTP_CODE);
5050
$request_headers = curl_getinfo($ch, CURLINFO_HEADER_OUT);
51+
var_dump($http_status_code);
52+
var_dump($curl_error_code);
53+
var_dump($curl_error_message);
54+
var_dump($request_headers);
55+
var_dump($raw_response);
5156
```
5257

5358
### Ensure you have the latest version of composer installed

0 commit comments

Comments
 (0)