Skip to content
This repository has been archived by the owner on Jul 20, 2020. It is now read-only.

Latest commit

 

History

History
15 lines (10 loc) · 744 Bytes

README.md

File metadata and controls

15 lines (10 loc) · 744 Bytes

Google Http Client - Feign Client

DEPRECATED: THIS IS IN FEIGN CORE AS OF VERSION 10.4.0

This library is a feign Client to use the java Google Http Client.

To use this, add to your classpath (via maven, or otherwise). Then cofigure Feign to use the GoogleHttpClient:

GitHub github = Feign.builder()
                     .client(new GoogleHttpClient())
                     .target(GitHub.class, "https://api.github.com");

This client is used in Sprout Social's production environment.