Class AbstractOAuth1JSONTokenExtractor<T extends OAuth1Token>

    • Constructor Detail

      • AbstractOAuth1JSONTokenExtractor

        public AbstractOAuth1JSONTokenExtractor()
    • Method Detail

      • extract

        public T extract​(Response response)
                  throws IOException
        Description copied from interface: TokenExtractor
        Extracts the concrete type of token from the contents of an Http Response
        Specified by:
        extract in interface TokenExtractor<T extends OAuth1Token>
        Parameters:
        response - the whole response
        Returns:
        OAuth access token
        Throws:
        IOException - in case of troubles while getting body from the response
      • createToken

        protected abstract T createToken​(String token,
                                         String secret,
                                         String response)