List of usage examples for twitter4j.auth OAuthAuthorization encodeParameters
public static String encodeParameters(List<HttpParameter> httpParams)
From source file:cmu.edu.homework.mediaUpload.AbstractPhotoUploadImpl.java
License:Apache License
protected String generateVerifyCredentialsAuthorizationURL(String verifyCredentialsUrl) { List<HttpParameter> oauthSignatureParams = oauth.generateOAuthSignatureHttpParams("GET", verifyCredentialsUrl);/*from w w w . j a v a 2 s . c om*/ return verifyCredentialsUrl + "?" + OAuthAuthorization.encodeParameters(oauthSignatureParams); }