Skip to content

Commit 9e1b821

Browse files
Update TROUBLESHOOTING.md
1 parent f3f15ed commit 9e1b821

File tree

1 file changed

+5
-7
lines changed

1 file changed

+5
-7
lines changed

TROUBLESHOOTING.md

Lines changed: 5 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,14 @@
11

22
## Table of Contents
3-
* [Viewing the Request Body](#request-body)
3+
* [Viewing the Response Body](#response-body)
44

5-
6-
<a name="request-body"></a>
7-
## Viewing the Request Body
5+
<a name="response-body"></a>
6+
## Viewing the Response Body
87

98
When debugging or testing, it may be useful to examine the raw request body.
109

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:
10+
You can do this just after call `response = client.your.api._(param).call.<METHOD>` Where <METHOD> can be `get()`, `post()`, `patch()` and `post()`.
1311

1412
```python
15-
print response.body
13+
print(response.body)
1614
```

0 commit comments

Comments
 (0)