return oauthConsumer.accessProtectedResource(OAUTH_HOST+UPDATE_API_URL, accessToken, queryParams, "POST");
}
public String queryUserLocation() throws OAuthServiceProviderException, BadTokenStateException, IOException {
if (accessToken==null) {
throw new BadTokenStateException("No access token set");
}
return oauthConsumer.accessProtectedResource(OAUTH_HOST+QUERY_API_URL, accessToken, null);
}