Example usage for twitter4j.auth OAuthAuthorization encodeParameters

List of usage examples for twitter4j.auth OAuthAuthorization encodeParameters

Introduction

In this page you can find the example usage for twitter4j.auth OAuthAuthorization encodeParameters.

Prototype

public static String encodeParameters(List<HttpParameter> httpParams) 

Source Link

Usage

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);
}