You only need to set tls.Config.InsecureSkipVerify. Don't set Certificates
and ServerName.

Of course, you should not use InsecureSkipVerify for using a third-party
API at all. InsecureSkipVerify is really only meant for localhost testing.

You want to use https://golang.org/pkg/crypto/x509/#NewCertPool instead to
add the trusted certs, and then set tls.Config.RootCAs.


On Wed, Jul 6, 2016 at 5:01 AM, <gob...@gmail.com> wrote:

> Hi guys,
>
> I am currently working on integration of my system with 3rd party api.
> They provide us a test server and SSL certificates for it. When I try to
> use golang to connect it I am getting errror : *remote error: bad
> certificate *where code in php works with the same certificates. Can
> anyone tell me what am I doing wrong or what is the difference I cannot see?
>
> Here is my golang code:
>
> https://gist.github.com/Gobonoid/a3289f0665819bc04b03a6b0cfccdc2a
>
> And here is PHP curl:
>
> https://gist.github.com/Gobonoid/ab6c3ded4164e00a5c2e515bbb0959b2
>
> Thank You for any help.
>
> --
> You received this message because you are subscribed to the Google Groups
> "golang-nuts" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to golang-nuts+unsubscr...@googlegroups.com.
> For more options, visit https://groups.google.com/d/optout.
>

-- 
You received this message because you are subscribed to the Google Groups 
"golang-nuts" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to golang-nuts+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to