質問編集履歴
2
HTTP POST内容の修正
test
CHANGED
File without changes
|
test
CHANGED
@@ -118,7 +118,7 @@
|
|
118
118
|
|
119
119
|
```HTTP
|
120
120
|
|
121
|
-
POST /api/c
|
121
|
+
POST /api/product/post HTTP/1.1
|
122
122
|
|
123
123
|
Content-Length: 0
|
124
124
|
|
1
HTTPの情報を追記いたしました。
test
CHANGED
File without changes
|
test
CHANGED
@@ -111,3 +111,51 @@
|
|
111
111
|
http.csrf().requireCsrfProtectionMatcher(csrfMatcher);
|
112
112
|
|
113
113
|
```
|
114
|
+
|
115
|
+
|
116
|
+
|
117
|
+
### 追記
|
118
|
+
|
119
|
+
```HTTP
|
120
|
+
|
121
|
+
POST /api/customer/post/visitType HTTP/1.1
|
122
|
+
|
123
|
+
Content-Length: 0
|
124
|
+
|
125
|
+
Content-Type: application/json
|
126
|
+
|
127
|
+
Host: localhost:8080
|
128
|
+
|
129
|
+
|
130
|
+
|
131
|
+
HTTP/1.1 403
|
132
|
+
|
133
|
+
Vary: Origin
|
134
|
+
|
135
|
+
Vary: Access-Control-Request-Method
|
136
|
+
|
137
|
+
Vary: Access-Control-Request-Headers
|
138
|
+
|
139
|
+
X-Content-Type-Options: nosniff
|
140
|
+
|
141
|
+
X-XSS-Protection: 1; mode=block
|
142
|
+
|
143
|
+
Cache-Control: no-cache, no-store, max-age=0, must-revalidate
|
144
|
+
|
145
|
+
Pragma: no-cache
|
146
|
+
|
147
|
+
Expires: 0
|
148
|
+
|
149
|
+
X-Frame-Options: DENY
|
150
|
+
|
151
|
+
Transfer-Encoding: chunked
|
152
|
+
|
153
|
+
Date: Wed, 24 Mar 2021 04:56:33 GMT
|
154
|
+
|
155
|
+
Keep-Alive: timeout=60
|
156
|
+
|
157
|
+
Connection: keep-alive
|
158
|
+
|
159
|
+
[message-body; type: "application/octet-stream", size: 20 bytes]
|
160
|
+
|
161
|
+
```
|