1 min read

How To Debug Chrome Network Activity

Export Network Request

  1. Open Chrome DevTools and click the Network tab.
  2. Here you can see all network activity, right click any request and select “Copy as cURL”.
  3. You can also select “Save all as HAR with content” to export a HAR file.

Import cURL into Postman

  1. Install Postman.
  2. Select File->Import to import raw text.
  3. Now you can tinker around with this request easily with Postman.

Import HAR File

  1. Install Proxyman if you’re using macOS, or install Charles Proxy if you’re using Windows.
  2. Open your HAR file with one proxy app, and debug from there.