Open
Description
Hello,
I am using this piece of code:
defaultScheme := []string{scheme}
t := runtimeclient.New(url, client.DefaultBasePath, defaultScheme)
t.DefaultAuthentication = runtimeclient.APIKeyAuth(authHeaderName, "header",
fmt.Sprintf(authHeaderFormat, token))
return client.New(t, strfmt.Default), nil
I would like to add an option to not verify SSL cert. What is the easiest way to accomplish this ?
Thanks.