In the example here:
http://code.google.com/p/gdata-java-client/wiki/MigratingToGoogleApiJavaClient
We have:
HttpRequest request = transport.buildGetRequest();
request.url = url;
VideoFeed videoFeed = request.execute().parseAs(VideoFeed.class);
But in my own code i have:
HttpRequest request = transport.buildGetRequest();
request.url = metafeedUrl;
SpreadsheetFeed feed =
request.execute().parseAs(SpreadsheetFeed.class);
But SpreadsheetFeed is not a type of feed in this library.Wich kind of feed i
should have their?