dongxiaoxing3058 2018-09-10 11:51
浏览 61
已采纳

Google Golang SDK使用自定义CA捆绑包

I am trying to pull messages from a Google Cloud Pub/Sub Subscription using the Google Cloud Client Library for Go (https://godoc.org/cloud.google.com/go/pubsub).

I am going through an HTTP proxy that uses TLS interception, so I need the pubsub client (it appears to be using gRPC) to use a custom CA cert bundle for its request verification. How can I make this work? Also, is there a way to configure proxy support other than setting http_proxy and https_proxy?

  • 写回答

1条回答 默认 最新

  • dousi6192 2018-09-12 20:01
    关注

    For anyone else interested in the answer to this problem, you can set an environmental variable:

    export GRPC_DEFAULT_SSL_ROOTS_FILE_PATH=/path/to/my/cert/bundle.pem
    

    Also, you can display more debug information by setting this environmental variable:

    export GRPC_VERBOSITY=DEBUG
    

    For the list of all env vars you can set see here: https://github.com/grpc/grpc/blob/master/doc/environment_variables.md

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
编辑
预览

报告相同问题?

手机看
程序员都在用的中文IT技术交流社区

程序员都在用的中文IT技术交流社区

专业的中文 IT 技术社区,与千万技术人共成长

专业的中文 IT 技术社区,与千万技术人共成长

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

客服 返回
顶部