错误:写入 EPROTO 34557064:错误:100000f7:SSL 例程:OPENSSL_internal:WRONG_VERSION_NUMBER

2022-08-30 04:34:44
Error: write EPROTO 34557064:error:100000f7:SSL routines:OPENSSL_internal:WRONG_VERSION_NUMBER:../../third_party/boringssl/src/ssl/tls_record.cc:242:

问题是,当该API实际上仅支持HTTP时,我试图发布到https。只需将此作为可能遇到相同问题的其他人的注释即可。

任何帮助都可以欣赏


答案 1

当您使用https而不是http时,会出现这种类型的问题。将网址更改为使用 http

例:https://localhost:3000/posts

将其更改为:http://localhost:3000/posts


答案 2

当我们点击的API在http上运行并且我们正在尝试使用https时,会出现此错误。信息真的很有用。

示例:使用此 https://localhost:8092/customers,当此 http://localhost:8092/customers 时,必须使用 API,因为 API 正在 http 上运行。