user1130176
user1130176

Reputation: 1866

Use wireshark to see requests, not packets

I am trying to monitor calls to an API, and I am trying to do so with wireshark. However, I only see low level packets, I want to see the actual http and https requests and responses. Is this possible with wireshark?

Upvotes: 1

Views: 1902

Answers (1)

isomarcte
isomarcte

Reputation: 1981

You might consider using something besides wireshark for this.

For instance the Burp proxy will allow you to inspect requests and responses between you and the application, as well as pause a request, edit it, then send it on it's way. It really is a great tool for working with web APIs.

Upvotes: 1

Related Questions