How to use ssl client certificate (p12) with colly?
Like this :
curl \
--cert ./
--pass
-H "Authorization: orgId=
"https://api.searchads.apple.com/api/v1/campaigns/
You should be able to do it by configuring a transport and setting the collector WithTranport
More details can be found in a basic Golang http example I found here
Most helpful comment
You should be able to do it by configuring a transport and setting the collector
WithTranportMore details can be found in a basic Golang http example I found here
https://gist.githubusercontent.com/michaljemala/d6f4e01c4834bf47a9c4/raw/f1b87b381499b6e86dfc60fab845fbe0ef1b9bfb/tls-client.go