Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Error in Postman: Error: write EPROTO 8768:error:1408F10B:SSL routines:ssl3_get_record:wrong version number:

Tags:

During request GET in Postman (https://localhost:9001/test) I've received an error:

Error: write EPROTO 8768:error:1408F10B:SSL routines:ssl3_get_record:wrong version number:c:\users\administrator\buildkite-agent\builds\pm-electron\postman\electron-release\vendor\node\deps\openssl\openssl\ssl\record\ssl3_record.c:252:

Warning: This request did not get sent completely and might not have all the required system headers.

Postman Configuration:

  • SSL certificate verification is disabled;
  • Proxy configuration - Default Proxy Configuration and Proxy configurations for sending requests are disabled;
  • Request timeout in ms - 0.
like image 736
Vik Avatar asked May 20 '20 15:05

Vik


2 Answers

For Localhost we don't really need https, please try with http://localhost:9001/test

like image 78
jeeva nantham Avatar answered Sep 17 '22 15:09

jeeva nantham


check that you are using the HTTP protocol not HTTPS to send requests to the server:

example

export const config = {
    baseUrl: "http://localhost:4000"
}
like image 16
ahmnouira Avatar answered Jan 01 '70 00:01

ahmnouira