-
Notifications
You must be signed in to change notification settings - Fork 77
/
test.http
138 lines (88 loc) · 2.34 KB
/
test.http
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
# Name: REST Client
# Id: humao.rest-client
# Description: REST Client for Visual Studio Code
# Version: 0.21.3
# Publisher: Huachao Mao
# VS Marketplace Link: https://marketplace.visualstudio.com/items?itemName=humao.rest-client
# You should use environment vars (https://marketplace.visualstudio.com/items?itemName=humao.rest-client#environment-variables) for these
# but you can also set here if needed (just don't check in!)
#@baseUrl = http://emonesp.local
#@ssid = your_ssid
#@pass = your_password
#@apikey = your_key
###
# @name index
GET {{baseUrl}}/ HTTP/1.1
###
@lastModified = {{index.response.headers.Last-Modified}}
GET {{baseUrl}}/ HTTP/1.1
If-Modified-Since: {{lastModified}}
###
GET {{baseUrl}}/status HTTP/1.1
###
GET {{baseUrl}}/config HTTP/1.1
###
GET {{baseUrl}}/lastvalues HTTP/1.1
###
POST {{baseUrl}}/config HTTP/1.1
Content-Type: application/json
{
"emoncms_enabled": true,
"emoncms_server": "emoncms.org",
"emoncms_node": "emonesp_test",
"emoncms_apikey": "{{apikey_emoncms}}",
"emoncms_fingerprint": ""
}
###
POST {{baseUrl}}/config HTTP/1.1
Content-Type: application/json
{
"emoncms_enabled": false
}
###
POST {{baseUrl}}/config HTTP/1.1
Content-Type: application/json
{
"mqtt_enabled": true,
"mqtt_server": "home.lan",
"mqtt_port": 1883,
"mqtt_topic": "emonesp_test",
"mqtt_user": "emonpi",
"mqtt_pass": "emonpimqtt2016"
}
###
POST {{baseUrl}}/config HTTP/1.1
Content-Type: application/json
{
"mqtt_enabled": false
}
###
POST {{baseUrl}}/savemqtt HTTP/1.1
Content-Type: application/x-www-form-urlencoded
enable=true&server=home.lan&port=1883&topic=espwifi8052&prefix=&user=emonpi&pass=_DUMMY_PASSWORD
###
GET {{baseUrl}}/upload
###
POST {{baseUrl}}/upload
Content-Type: multipart/form-data; boundary=----WebKitFormBoundary7MA4YWxkTrZu0gW
----WebKitFormBoundary7MA4YWxkTrZu0gW
Content-Disposition: form-data; name="image"; filename="firmware.bin"
Content-Type: application/octet-stream
< ./.pio/build/emonesp/firmware.bin
----WebKitFormBoundary7MA4YWxkTrZu0gW
###
GET {{baseUrl}}/debug HTTP/1.1
###
GET {{baseUrl}}/emontx HTTP/1.1
###
POST {{baseUrl}}/savenetwork HTTP/1.1
Content-Type: application/x-www-form-urlencoded
ssid={{ssid}}&pass={{pass}}
###
GET {{baseUrl}}/scan HTTP/1.1
###
GET {{baseUrl}}/firmware HTTP/1.1
###
GET {{baseUrl}}/update HTTP/1.1
###
GET {{baseUrl}}/restart HTTP/1.1