Skip to content

Instantly share code, notes, and snippets.

@wviana
Created February 16, 2016 12:04
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save wviana/659494d8d7411f38aa35 to your computer and use it in GitHub Desktop.
Save wviana/659494d8d7411f38aa35 to your computer and use it in GitHub Desktop.
private API buildAPI(final String token) {
return new RestAdapter.Builder()
.setEndpoint(API.HOST)
.setRequestInterceptor(new RequestInterceptor() {
@Override
public void intercept(RequestFacade request) {
request.addHeader("Authorization", "Bearer " + token);
}
})
.setLogLevel(RestAdapter.LogLevel.FULL)
.build()
.create(API.class);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment