+ variables.getVariable("xoauth_requestor_id");
URL feedUrl = new URL(feedUrlString);
System.out.println("Sending request to " + feedUrl.toString());
System.out.println();
GoogleService googleService =
new GoogleService(variables.getGoogleServiceName(),
"2-legged-oauth-sample-app");
// Set the OAuth credentials which were obtained from the steps above.
googleService.setOAuthCredentials(oauthParameters, signer);
// Make the request to Google
BaseFeed resultFeed = googleService.getFeed(feedUrl, Feed.class);
System.out.println("Response Data:");
System.out.println("=====================================================");
System.out.println("| TITLE: " + resultFeed.getTitle().getPlainText());
if (resultFeed.getEntries().size() == 0) {
System.out.println("|\tNo entries found.");