Hello,
I am working on an Android app that uses the gdata-java-client to download documents for display only. So far I have an application that authenticates with the services and displays a list of user documents. When the user selects a document another query is made for the documents itself. A request for txt, html, rtf and doc file...
Hello everybody,
it seems that I'm not the first one, but I don't find anything that helps. I'm new to Android and would like to develop a real simple photo sharing app (three tabs: camera, gallery and upload to Picasa) to start off. Unfortunately the Google Data APIs for Java, don't run on Android and I didn't find a good tutorial for ...
Hi ,
I am trying to access picasa from android ,
i have tried to run following sample code
http://code.google.com/p/google-api-java-client/source/browse/picasa-atom-android-sample/?repo=samples#picasa-atom-android-sample%3Fstate%3Dclosed
but i am getting only one thing over here ,
and there is no options to select google accoun...
Long story short: I'm trying to post comments and create issues onto Google Code via an Android App called Abugadro.
I followed a very similar piece of code here:
http://stackoverflow.com/questions/3254330/google-spreadsheet-api-update-edit-with-protocol
When trying to post a comment onto the API, I've gotten various errors like 403 ...
Does anyone know how to use 2-legged OAuth with google-api-java-client?
I'm trying to access the Google Apps Provisioning API to get the list of users for a particular domain.
The following does not work
HttpTransport transport = GoogleTransport.create();
GoogleHeaders headers = (GoogleHeaders) transport.defaultHeaders;
headers.setAppl...
Hello experts,
I have been searching for getting some solution using which I can easily get precise information regarding -
1) Youtube Most Viewed Videos
2) Youtube Most Rated Videos
3) Youtube Search
I know that this can be done with ease using gdata-java-client.
But, my requirement is that, I need to get the aforesaid three details...
Hi ,
I an trying to fetch photos from picasa album in android ,
i have used following link as a reference
http://gdata-java-client.googlecode.com/svn/tags/2.2.1-alpha/sample/picasa/picasa-atom-android-sample/instructions.html
But in the above example i think user can only access ALBUMS , what i want to access photos also , which...
Hello experts,
I would be obliged, if you could kindly let me know the means by which I can retrieve the youtube thumbnails using Google API Client Library for Java, similar to the way in which we fetched thumbnails using gdata.
List<String> thumbnails = new LinkedList<String>();
for (MediaThumbnail mediaThumbnail : mediaGroup.getThum...
Hello,
I'm trying to use the google-api-java-client (I suppose this is what is referred to as 2.0) for writing an android application for youtube. (gdata-java-client (1.x) does not support android, I understand). I have loooked through the youtube documentation as well as the sample provided in "youtube-jsonc-sample", which only queries...
Hi,
I am having a real issue retrieving map features from the features feed through the new java api on Android.
Although i can get a featrureFeed containing an id and title (from a specific MapFeed), as soon as i add in FeatureContent to the request (for getting the placemark details) FeatureFeed.executeGet() returns with a '400 bad r...
Using the google-api-java-client I have gathered that the library parses the xml based on the classes you create and the keys you make. For example: if you have the following XML:
<entry test="ok">
<link name="somewhere.org"/>
</entry>
Then you could have these two classes:
public class Entry
{
@Key("@test")
public String test;
...
Hi experts,
I hope my query is quite clear from the title itself. I need to implement the auto-completion for youtube(video suggestions in a list as the user begins typing).
I need this feature for one of my Android activities.
Experts, please advise as to how to get these auto-completion list as i start typing.
Any help in this rega...