Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit a5b45b3

Browse files
Create troubleshooting file
1 parent 263f6b9 commit a5b45b3

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

TROUBLESHOOTING.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
2+
## Table of Contents
3+
* [Viewing the Request Body](#request-body)
4+
5+
6+
<a name="request-body"></a>
7+
## Viewing the Request Body
8+
9+
When debugging or testing, it may be useful to examine the raw request body.
10+
11+
You can do this just after call `response = client.your.api._(param).call.<METHOD>` Methods can be `get()`, `post()`, `patch()` and `post()`.
12+
After the call you just need to do as follow:
13+
14+
```python
15+
print response.body
16+
```

0 commit comments

Comments
 (0)