我正在尝试将数据发布到要求(可选)客户端证书的服务器(API)。
我正在使用http包为dart(https://pub.dev/packages/http)创建http POST请求。
var uriResponse = await client
.post(
'https://myApiUrl',
headers: headers,
body: json.encode(dataToPost))
.then((res) {
...success code...
}).catchError((error) {
print(error);
});
我正在(.post呼叫专线):
Exception has occurred. ClientException ()
异常消息为空。
更改服务器配置,使其不再需要客户端证书即可解决此问题。
如何绕过客户端证书提示?