How to make wireshark filter POST-requests only?
Solution 1:
You can use the following filter:
http.request.method == "POST"
Solution 2:
If you want to display both methods GET and POST you filter wireshark like this
http.request.method == GET or http.request.method == POST