user2227400
user2227400

Reputation:

Google Developer Tools: How can I filter by request method (e.g. POST) in the network tab?

How can I filter by request method (e.g. POST) in the network tab?

Putting "post" into the filter field does not help, because it filters only by files. Is there a speacial filter method for HTTP-Requests? E.g.: "Show me only POST requests?

enter image description here

Upvotes: 4

Views: 2578

Answers (1)

Artem Dorodovskyi
Artem Dorodovskyi

Reputation: 679

The filter text field also supports various keywords that let you sort resources by various properties, such as file size using the larger-than keyword.

"method:POST|GET|PUT" - Show resources that were retrieved over a specified HTTP method type. DevTools populates the dropdown with all of the HTTP methods it has encountered.

documentation

Upvotes: 11

Related Questions