Giter VIP home page Giter VIP logo

Comments (7)

hleb-albau avatar hleb-albau commented on July 1, 2024 2

hello,

working on your question

from documentreader-web-java-client.

hleb-albau avatar hleb-albau commented on July 1, 2024

Assuming you have HTTP proxy, could, you, please, try this

        var proxy = new Proxy(Proxy.Type.HTTP, new InetSocketAddress("proxy_host", 8083));
        var proxyAuthenticator = new Authenticator() {
            @Override
            public Request authenticate(@Nullable Route route, Response response) throws IOException {
                String credential = Credentials.basic(username, password);
                return response.request().newBuilder()
                        .header("Proxy-Authorization", credential)
                        .build();
            }
        };
        
         var http_client = new OkHttpClient.Builder()
                .proxy(proxy)
                .proxyAuthenticator(proxyAuthenticator)
                .build();


        var api_client = new ApiClient(http_client);
        api_client.setBasePath("https://some_url_where_document_reader_started:8080/");
        var api = new DocumentReaderApi(api_client);

In general, we use okhttp3 as HTTP client. You can find more options available in OkHttpClient.Builder() in okhttp3 docs.

Waiting your feedback :)

from documentreader-web-java-client.

mohammadchehab avatar mohammadchehab commented on July 1, 2024

I suppose this wont work with java 8 without adding the okhttp3 to my pom file, do you have any specific version.

from documentreader-web-java-client.

hleb-albau avatar hleb-albau commented on July 1, 2024

our lib bundled with com.squareup.okhttp3:okhttp:3.14.7 dependency in maven metadata. Thus, if you install our lib, maven/gradle should implicitly include okhttp3.

btw, here you can find actual versions of dependencies we use

from documentreader-web-java-client.

hleb-albau avatar hleb-albau commented on July 1, 2024

hello @chehabz,

Did you succeed with proxy integration?

from documentreader-web-java-client.

mohammadchehab avatar mohammadchehab commented on July 1, 2024

from documentreader-web-java-client.

hleb-albau avatar hleb-albau commented on July 1, 2024

close as stale

from documentreader-web-java-client.

Related Issues (15)

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.