Generated by
JDiff

Class twitter4j.http.OAuthAuthorization

Removed Methods
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.
 

Added Methods
String encodeParameters(List<HttpParameter>) @param httpParams parameters to be enocded and concatenated
String encodeParameters(List<HttpParameter>, String, boolean)  
AccessToken getOAuthAccessToken(String, String) Retrieves an access token associated with the supplied screen name and password using xAuth.
In order to get access acquire AccessToken using xAuth, you must apply by sending an email to api@twitter.com #?? all other applications will receive an HTTP 401 error.
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.
 

Changed Methods
String normalizeAuthorizationHeaders(List<HttpParameter>) Change in signature from java.util.List to java.util.List.
 
void setAuthorizationHeader(String, String, HttpParameter[], HttpURLConnection) Change in signature from (java.lang.String, java.lang.String, twitter4j.http.HttpParameter[], java.net.HttpURLConnection) to (java.lang.String, java.lang.String, twitter4j.internal.http.HttpParameter[], java.net.HttpURLConnection).
 
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[].