Class OkHttpHttpClient

  • All Implemented Interfaces:
    com.github.scribejava.core.httpclient.HttpClient, java.io.Closeable, java.lang.AutoCloseable

    public class OkHttpHttpClient
    extends java.lang.Object
    implements com.github.scribejava.core.httpclient.HttpClient
    • Field Summary

      • Fields inherited from interface com.github.scribejava.core.httpclient.HttpClient

        CONTENT_LENGTH, CONTENT_TYPE, DEFAULT_CONTENT_TYPE
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      void close()  
      com.github.scribejava.core.model.Response execute​(java.lang.String userAgent, java.util.Map<java.lang.String,java.lang.String> headers, com.github.scribejava.core.model.Verb httpVerb, java.lang.String completeUrl, byte[] bodyContents)  
      com.github.scribejava.core.model.Response execute​(java.lang.String userAgent, java.util.Map<java.lang.String,java.lang.String> headers, com.github.scribejava.core.model.Verb httpVerb, java.lang.String completeUrl, com.github.scribejava.core.httpclient.MultipartPayload bodyContents)  
      com.github.scribejava.core.model.Response execute​(java.lang.String userAgent, java.util.Map<java.lang.String,java.lang.String> headers, com.github.scribejava.core.model.Verb httpVerb, java.lang.String completeUrl, java.io.File bodyContents)  
      com.github.scribejava.core.model.Response execute​(java.lang.String userAgent, java.util.Map<java.lang.String,java.lang.String> headers, com.github.scribejava.core.model.Verb httpVerb, java.lang.String completeUrl, java.lang.String bodyContents)  
      <T> java.util.concurrent.Future<T> executeAsync​(java.lang.String userAgent, java.util.Map<java.lang.String,java.lang.String> headers, com.github.scribejava.core.model.Verb httpVerb, java.lang.String completeUrl, byte[] bodyContents, com.github.scribejava.core.model.OAuthAsyncRequestCallback<T> callback, com.github.scribejava.core.model.OAuthRequest.ResponseConverter<T> converter)  
      <T> java.util.concurrent.Future<T> executeAsync​(java.lang.String userAgent, java.util.Map<java.lang.String,java.lang.String> headers, com.github.scribejava.core.model.Verb httpVerb, java.lang.String completeUrl, com.github.scribejava.core.httpclient.MultipartPayload bodyContents, com.github.scribejava.core.model.OAuthAsyncRequestCallback<T> callback, com.github.scribejava.core.model.OAuthRequest.ResponseConverter<T> converter)  
      <T> java.util.concurrent.Future<T> executeAsync​(java.lang.String userAgent, java.util.Map<java.lang.String,java.lang.String> headers, com.github.scribejava.core.model.Verb httpVerb, java.lang.String completeUrl, java.io.File bodyContents, com.github.scribejava.core.model.OAuthAsyncRequestCallback<T> callback, com.github.scribejava.core.model.OAuthRequest.ResponseConverter<T> converter)  
      <T> java.util.concurrent.Future<T> executeAsync​(java.lang.String userAgent, java.util.Map<java.lang.String,java.lang.String> headers, com.github.scribejava.core.model.Verb httpVerb, java.lang.String completeUrl, java.lang.String bodyContents, com.github.scribejava.core.model.OAuthAsyncRequestCallback<T> callback, com.github.scribejava.core.model.OAuthRequest.ResponseConverter<T> converter)  
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

      • OkHttpHttpClient

        public OkHttpHttpClient()
      • OkHttpHttpClient

        public OkHttpHttpClient​(okhttp3.OkHttpClient client)
    • Method Detail

      • close

        public void close()
                   throws java.io.IOException
        Specified by:
        close in interface java.lang.AutoCloseable
        Specified by:
        close in interface java.io.Closeable
        Throws:
        java.io.IOException
      • executeAsync

        public <T> java.util.concurrent.Future<T> executeAsync​(java.lang.String userAgent,
                                                               java.util.Map<java.lang.String,java.lang.String> headers,
                                                               com.github.scribejava.core.model.Verb httpVerb,
                                                               java.lang.String completeUrl,
                                                               byte[] bodyContents,
                                                               com.github.scribejava.core.model.OAuthAsyncRequestCallback<T> callback,
                                                               com.github.scribejava.core.model.OAuthRequest.ResponseConverter<T> converter)
        Specified by:
        executeAsync in interface com.github.scribejava.core.httpclient.HttpClient
      • executeAsync

        public <T> java.util.concurrent.Future<T> executeAsync​(java.lang.String userAgent,
                                                               java.util.Map<java.lang.String,java.lang.String> headers,
                                                               com.github.scribejava.core.model.Verb httpVerb,
                                                               java.lang.String completeUrl,
                                                               com.github.scribejava.core.httpclient.MultipartPayload bodyContents,
                                                               com.github.scribejava.core.model.OAuthAsyncRequestCallback<T> callback,
                                                               com.github.scribejava.core.model.OAuthRequest.ResponseConverter<T> converter)
        Specified by:
        executeAsync in interface com.github.scribejava.core.httpclient.HttpClient
      • executeAsync

        public <T> java.util.concurrent.Future<T> executeAsync​(java.lang.String userAgent,
                                                               java.util.Map<java.lang.String,java.lang.String> headers,
                                                               com.github.scribejava.core.model.Verb httpVerb,
                                                               java.lang.String completeUrl,
                                                               java.lang.String bodyContents,
                                                               com.github.scribejava.core.model.OAuthAsyncRequestCallback<T> callback,
                                                               com.github.scribejava.core.model.OAuthRequest.ResponseConverter<T> converter)
        Specified by:
        executeAsync in interface com.github.scribejava.core.httpclient.HttpClient
      • executeAsync

        public <T> java.util.concurrent.Future<T> executeAsync​(java.lang.String userAgent,
                                                               java.util.Map<java.lang.String,java.lang.String> headers,
                                                               com.github.scribejava.core.model.Verb httpVerb,
                                                               java.lang.String completeUrl,
                                                               java.io.File bodyContents,
                                                               com.github.scribejava.core.model.OAuthAsyncRequestCallback<T> callback,
                                                               com.github.scribejava.core.model.OAuthRequest.ResponseConverter<T> converter)
        Specified by:
        executeAsync in interface com.github.scribejava.core.httpclient.HttpClient
      • execute

        public com.github.scribejava.core.model.Response execute​(java.lang.String userAgent,
                                                                 java.util.Map<java.lang.String,java.lang.String> headers,
                                                                 com.github.scribejava.core.model.Verb httpVerb,
                                                                 java.lang.String completeUrl,
                                                                 byte[] bodyContents)
                                                          throws java.lang.InterruptedException,
                                                                 java.util.concurrent.ExecutionException,
                                                                 java.io.IOException
        Specified by:
        execute in interface com.github.scribejava.core.httpclient.HttpClient
        Throws:
        java.lang.InterruptedException
        java.util.concurrent.ExecutionException
        java.io.IOException
      • execute

        public com.github.scribejava.core.model.Response execute​(java.lang.String userAgent,
                                                                 java.util.Map<java.lang.String,java.lang.String> headers,
                                                                 com.github.scribejava.core.model.Verb httpVerb,
                                                                 java.lang.String completeUrl,
                                                                 com.github.scribejava.core.httpclient.MultipartPayload bodyContents)
                                                          throws java.lang.InterruptedException,
                                                                 java.util.concurrent.ExecutionException,
                                                                 java.io.IOException
        Specified by:
        execute in interface com.github.scribejava.core.httpclient.HttpClient
        Throws:
        java.lang.InterruptedException
        java.util.concurrent.ExecutionException
        java.io.IOException
      • execute

        public com.github.scribejava.core.model.Response execute​(java.lang.String userAgent,
                                                                 java.util.Map<java.lang.String,java.lang.String> headers,
                                                                 com.github.scribejava.core.model.Verb httpVerb,
                                                                 java.lang.String completeUrl,
                                                                 java.lang.String bodyContents)
                                                          throws java.lang.InterruptedException,
                                                                 java.util.concurrent.ExecutionException,
                                                                 java.io.IOException
        Specified by:
        execute in interface com.github.scribejava.core.httpclient.HttpClient
        Throws:
        java.lang.InterruptedException
        java.util.concurrent.ExecutionException
        java.io.IOException
      • execute

        public com.github.scribejava.core.model.Response execute​(java.lang.String userAgent,
                                                                 java.util.Map<java.lang.String,java.lang.String> headers,
                                                                 com.github.scribejava.core.model.Verb httpVerb,
                                                                 java.lang.String completeUrl,
                                                                 java.io.File bodyContents)
                                                          throws java.lang.InterruptedException,
                                                                 java.util.concurrent.ExecutionException,
                                                                 java.io.IOException
        Specified by:
        execute in interface com.github.scribejava.core.httpclient.HttpClient
        Throws:
        java.lang.InterruptedException
        java.util.concurrent.ExecutionException
        java.io.IOException