GithubHelp home page GithubHelp logo

Comments (2)

dmariogatto avatar dmariogatto commented on July 20, 2024

Would something like this suffice... GoogleLogListApi HttpClient Ctor? Note, that you will have to correctly set the base address of the HttpClient that you pass through.

Otherwise if you wanted to do something more complex, like support a different log list provider, you could create a custom implementation of ILogListApi.

from certificate-transparency.

amather avatar amather commented on July 20, 2024

Hi! I just discovered that it is indeed possible to configure the auth from the outside, so that no changes to this project are required.

While the DefaultProxy itself is read-only, its .Credentials property can be set. This way, I can configure the DefaultProxy with credentials before the HttpClient instance within GoogleLogListApi is created.

My code now looks like this and works fine with this library:

    var systemProxy = HttpClient.DefaultProxy.GetProxy(new(GeorgeClient.BaseUrl)) ;
    if(systemProxy != null && _httpClientHandler.Proxy == null && _httpClientHandler.SupportsProxy)
    {
        HttpClient.DefaultProxy.Credentials = CredentialCache.DefaultNetworkCredentials;
    }
    _httpClient = new(_httpClientHandler);

Thanks for your efforts though!

from certificate-transparency.

Related Issues (3)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.