Example #1
0
 /**
  * Get a {@link ParameterList} with the query string parameters.
  *
  * @return a {@link ParameterList} containing the query string parameters.
  * @throws OAuthException if the request URL is not valid.
  */
 public ParameterList getQueryStringParams() {
   try {
     final ParameterList result = new ParameterList();
     final String queryString = new URL(url).getQuery();
     result.addQuerystring(queryString);
     result.addAll(querystringParams);
     return result;
   } catch (MalformedURLException mue) {
     throw new OAuthException("Malformed URL", mue);
   }
 }