f253560638dc61ac4e728199fe967c72678d6388
[yaffs-website] / commands / headers / response_headers.md
1 response_headers
2 ========
3 This command returns the response headers sent from the page server when making a page request.
4
5 ```json
6 {
7   "name":"response_headers",
8   "args":[]
9 }
10 ```
11 Response should look like:
12 ```json
13 {
14     "response": {
15         "Host": "127.0.0.1:6789",
16         "Connection": "close",
17         "Content-Type": "text/html; charset=UTF-8",
18         "Content-Length": "671"
19     }
20 }
21 ```