Postman common errors and solutions, continuously updated ~

postman Chinese documentation

Basic operation: Check the request error report from the console

If Postman cannot send your request, or if it does not receive a response from the API you sent the request to, you will receive an error message. This message will contain an overview of the problem and a link to the console where you can access details about the request.
Insert image description here
Select View in console to examine the request details in the console and learn more about what went wrong.
Insert image description here

In postman, there is no response content after making the request.

details as following
Insert image description here

First, open the settings and turn off the ones selected below, as shown below
Settings->settings->General->SSL certificate veriflcation, turn off the switch.

Insert image description here

If the above steps are not successful, close postman (kill the process) and reopen it.

After I reopened it, I was able to successfully make interface requests.

这种情况出现的原因大致有两种:

  1. Request timeout: It may be caused by network or server reasons. You can try to change the network environment or check the server status. Or change the ssl enabled status in Settings and turn it off.
  2. The request was intercepted: It may be caused by the request header missing necessary parameters or values. You can check whether the request header complies with the API specification.

Postman keeps spinning in circles and cannot be opened.

The basic situation is as follows, always staying on this page
Insert image description here
This kind of problem is usually caused by too much cache, so the cache files need to be cleared. The specific operations are as follows:

  1. Close the Postman application
  2. Open the %appdata% directory (on Windows systems, enter %appdata% in File Explorer and press Enter)
    Insert image description here
  3. Delete Postman folder
    Insert image description here

Guess you like

Origin blog.csdn.net/yyuggjggg/article/details/134351073