Generated by
JDiff

Class twitter4j.http.OAuthAuthorization

Change from final to non-final.

Added Constructors
OAuthAuthorization(Configuration)  
 

Removed Methods
String encode(String) @param value string to be encoded
String encodeParameters(List<HttpParameter>) @param httpParams parameters to be enocded and concatenated
String encodeParameters(List<HttpParameter>, String, boolean)  
String normalizeRequestParameters(List<HttpParameter>)  
String normalizeRequestParameters(HttpParameter[]) The request parameters are collected, sorted and concatenated into a normalized string:
# Parameters in the OAuth HTTP Authorization header excluding the realm parameter.
# Parameters in the HTTP POST request body (with a content-type of application/x-www-form-urlencoded).
# HTTP GET parameters added to the URLs in the query part (as defined by [RFC3986] section 3).

The oauth_signature parameter MUST be excluded.
The parameters are normalized into a single string as follows:
1.
void setAuthorizationHeader(String, String, HttpParameter[], HttpURLConnection)  
 

Added Methods
String encodeParameters(List<HttpParameter>) @param httpParams parameters to be encoded and concatenated
String encodeParameters(List<HttpParameter>, String, boolean)  
List<HttpParameter> generateOAuthSignatureHttpParams(String, String)  
String getAuthorizationHeader(HttpRequest)  
AccessToken getOAuthAccessToken(String, String) {@inheritDoc}
String normalizeRequestParameters(List<HttpParameter>)  
String normalizeRequestParameters(HttpParameter[]) The request parameters are collected, sorted and concatenated into a normalized string:
# Parameters in the OAuth HTTP Authorization header excluding the realm parameter.
# Parameters in the HTTP POST request body (with a content-type of application/x-www-form-urlencoded).
# HTTP GET parameters added to the URLs in the query part (as defined by [RFC3986] section 3).

The oauth_signature parameter MUST be excluded.
The parameters are normalized into a single string as follows:
1.
void setOAuthRealm(String) Sets the OAuth realm
 

Changed Methods
String normalizeAuthorizationHeaders(List<HttpParameter>) Change in signature from java.util.List to java.util.List.
 
List<HttpParameter> toParamList(HttpParameter[]) Change in return type from java.util.List to java.util.List.
Change in signature from twitter4j.http.HttpParameter[] to twitter4j.internal.http.HttpParameter[].