Bypass Certificate Error Using Http

前端 未结 2 907
谎友^
谎友^ 2021-01-13 04:44

I\'m trying to create a proxy server that access third-party API, but their development end point have certificate error. Is there anyway to bypass ssl error when using http

2条回答
  •  旧巷少年郎
    2021-01-13 05:29

    Error -8172 means that 'Peer's certificate issuer has been marked as not trusted by the user.'

    If you had access to the raw socket, then connect method allows you to specify what to do in case of bad certificate by providing onBadCertificate callback. However, I am not sure what is the exact type of http object in your code sample, so i can't tell whether you can workaround this or not. I thought it might be an HttpClient instance but it doesn't have a get method which takes a URI, so I am not sure. If it is your own class, maybe you have access to underlying secure socket so you can still use onBadCertificate.

    Additionally, for server sockets, you can't rely on implicit SecureSocket.initialize() call. You need to call it explicitly with certificate db info.

提交回复
热议问题