Tagged Questions

Official documentation for Google's API client libraries for Java is available at: http://code.google.com/p/google-api-java-client/

learn more… | top users | synonyms

23
votes
4answers
10k views

Exception using HttpRequest.execute(): Invalid use of SingleClientConnManager: connection still allocated

I'm using google-api-client-java 1.2.1-alpha to execute a POST request, and am getting the following stacktrace when I execute() the HttpRequest. It happens immediately after I catch and ignore a ...
4
votes
3answers
949 views

Google API for Google Docs, requesting a list of documents — 400 Bad Request

After authentication from google servers for google docs, I do a simple getResponse, but I get a 400 Bad Request. I can't understand where am I going wrong. The sample code is, below private void ...
4
votes
2answers
920 views

Downloading Spreadsheets From Google Docs

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 ...
3
votes
2answers
490 views

Google Calendar API OAuth2 Troubles on Android Honeycomb

I am working on an Android Honeycomb (v3.0) application that has a requirement of communicating with the Google Calendar API. I would like to allow my application to access a particular Google ...
3
votes
1answer
63 views

How can instantiate Class<T> from T?

I've got following method: public <T> execute(HttpRequest request) { ... // in parseAs i have to pass Class<T> how can I instantiate it from T? request.execute().parseAs(classT); ...
3
votes
1answer
1k views

google-api-java-client NetHttpTransport causes NoClassDefFoundError

I just started studying google-api-java-client on Android. Added next 3 libraries into project. (I don't use Maven.) google-api-client-1.4.1-beta.jar google-api-client-googleapis-1.4.1-beta.jar ...
3
votes
1answer
1k views

Youtube support in google-api-java-client vs gdata-java-client

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 ...
3
votes
1answer
1k views

How to retrieve youtube thumbnails using Google API Client Library for Java

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 ...
3
votes
2answers
1k views

2-legged OAuth with google-api-java-client

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 ...
2
votes
1answer
179 views

Android Calendar API insert recurring event

Using the Google Calendar Api. After browsing the rfc2445, I'm still unable to set recurrence on an event. private String[] days = {"SU", "MO", "TU", "WE", "TH", "FR", "SA"}; private String rrule ...
2
votes
1answer
133 views

Would it be possible to fetch videos on a certain tag published between certain dates

We use google-api-java-client to lookup videos and we would like to know if it would be possible to fetch videos on a certain tag (say sports) published between certain dates (starting from yesterday ...
2
votes
1answer
225 views

gdata-java-client + oauth2 + access_token secret

I'm currently trying to use the new java client(s) and due to legacy reasons for current state of google libraries, I need to use both the gdata and the new google java client api. Obviously I'd ...
2
votes
1answer
297 views

Accesing youtube video data using“Google APIs Client Library for Java”

I am trying to implement an android application that can browse and display youtube content (most importantly thumbnails). Now normally the way to go would be through the Youtube API and Gdata but ...
2
votes
1answer
194 views

What Is the Difference between gdata-java-client and google-api-java-client?

I'm working on a project that interfaces with the the Youtube API. I've come across the two projects (1) gdata-java-client and (2) google-api-java-client. The project's scopes (and names) are a bit ...
2
votes
2answers
532 views

Set Google Calendar query parameters with google-java-api-client in Android

I'm building a URL to gain access to a users Google calendar with the google-javi-api as such: CalendarUrl url = CalendarUrl.forEventFeed("accountName", "private", "full"); which returns me this ...
2
votes
1answer
663 views

Get Google Calendar Events Start and End Times with google-java-api-client in Android

How would one go about parsing the start and end times of events in a users Google Calendar using the google-api-java-client? After installing this sample android project from Google code, I can get ...
2
votes
1answer
424 views

google-api-java-client JSON parser on Android produces an empty self.request.body on GAE

This is related to another question about URL shortener. The code for URL shortener works fine, on both standalone Java and on Android. However, when re-using this code to communicate to a custom ...
2
votes
1answer
325 views

How to do a partial update on contacts using Google API Java client?

I'm using the lightweight Google API Java client to modify contacts. There are a few samples for the API showing how to do partial updates (i.e. via HTTP PATCH), but Google Contacts specifically ...
2
votes
0answers
164 views

Autocompletion in android - for youtube search

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 ...
1
vote
1answer
172 views

Single sign on for google api's using Scribe?

Is there anyway to retrieve the Google Oauth refresh_token using Scribe? I am building an app that requires several scopes mixed between java Gdata and Google api java client libraries -- and I am ...
1
vote
0answers
37 views

Xml model for adding contact to google contacts

I try to write xml model by hand(as described in google-api-java-client site) to add contact to google contacts,but I have always got 400 bad request when trying to POST my contact,I have include all ...
1
vote
0answers
118 views

400 Bad Request:adding contact to google contacts via google-api-java-client

I have an HttpRequestException:400 Bad request when trying to insert contact to google contacts with help of google-api-java-client and I'm spending few hours to find what is wrong,maybe someone can ...
1
vote
1answer
46 views

GsonFactory null deserialization

I'm using google-http-java-client and GsonFactory as json factory. WHen I get JSON object like this {"to_latlnt" : null, "phone" : 77777777777} GSON deserialize to_latlng as empty not-null object ...
1
vote
0answers
98 views

Android apache client stop working with NonRepeatableRequestException

From time to time apache client stop working and throws NonRepeatableRequestException "Cannot retry request with a non-repeatable request entity". Usually appears between two requests to different ...
1
vote
0answers
280 views

Exporting contacts from Android to Gmail account

I'm a junior Android developer. I have task to export contacts from my Android phone book to Gmail account directory Contacts->My Contacts, but I can't find any useful information on the Internet ...
1
vote
0answers
137 views

How to retrieve favorite videos with google api java client library?

I'm trying to retrieve the favorite videos of a youtube user with google api java client library. It's just a tweak of the youtube-json-sample. What I basically want to do is to print a list of the ...
1
vote
1answer
169 views

Google-API Calendar Feed for Java

I'm currently using the new Google API 1.5 beta, and I can't find any examples for retrieving a calendar feed. The examples posted here only seem to provide a list of calendars per account and not ...
1
vote
0answers
244 views

Android Goole API Java Client com.google.api.client.auth.oauth2.draft10

I was trying to do a simple app using the Google Tasks API. Something simple it's turning into a nightmare. Maybe it's something simple, probably it is, but I can't figure it out. The problem: I was ...
1
vote
2answers
646 views

Fixing dependency for Google API task-android-sample

I'm trying to compile and run the task-android-sample code from Google's API website. I couldn't get it to work with Maven so I ended up downloading all the jar files. Below are the steps I did: 1) ...
1
vote
2answers
71 views

Can I use google-api-java-client library for oauth2 authorization in facebook or other services that support oauth2 standard?

In this Gooogle IO 11 presentation - http://code.google.com/p/google-api-java-client/wiki/Android speaker has mentioned that new google-api-java-client could be used to any rest json api. Is it ...
1
vote
2answers
587 views

Using Goople Api fetch Documents list and download them?

Hi i am using the picasa example for android and modifying it but i am not getting any list of documents Plz help i am posting my modified class rest are same as in picasa example?Plz help m getting ...
1
vote
1answer
196 views

how to import com.google.api.client libraries?

This question might be asked before but I couldn't solve my problem with those explananations. I want to start using google apis in my Eclipse IDE. I've downloaded a sample from google codes. ...
1
vote
1answer
663 views

Best way to use Google APIs using OAuth 2.0 on Android

I'm trying to migrate an Android application using OAuth 1.0a to OAuth 2.0. (using the Google API Client Library for Java/Android for my OAuth 2.0 needs). What is the best/preferred solution for ...
1
vote
2answers
306 views

Android, UnknownHostException: www.google.com, on device,not emulator

I'm using google api java client for connecting to Google Docs in Android app. Once in a while i get following exception: UnknownHostException: www.google.com Code: transport = ...
1
vote
1answer
157 views

annotation in eclipse for using google client api from android - @Key

I am trying to use the google api to access picasa from android. I'm following a sample that parses atom by doing: AlbumFeed feed = request.execute().parseAs(AlbumFeed.class); In order for the atom ...
1
vote
2answers
687 views

“411 Length required”-response from Google Docs Api using Android API 10 and below

I am developing an application for Android devices, and one part of it is enabling downloading and uploading between the users Google Docs and the device storage. The problem that I have is I'm ...
1
vote
1answer
314 views

Recurring events in Google Calendar API on Android

I have started to use the Google Calendar Api and now I'm ok with the authetication, get the calendar list, rename the calendars, and add event with specified time and title to a selected calendar. I ...
1
vote
1answer
95 views

To retrive all Event deatils (Where,Description,etc) in Google calendar using Google-API-Java-Client in android

I have been trying to get Event details like Location details,Description,start time and end time etc of the event in Google calendar using Google-API-Java-Client in android. I am using the following ...
1
vote
1answer
118 views

How do you get the description of a CalendarEntry using the google-api-java-client API on Android?

I am using the Google APIs Client Library for Java on Android to retrieve public Google Calendar entries: http://code.google.com/p/google-api-java-client/ I was able to get the Android Calendar ...
1
vote
0answers
149 views

Gdata api and Google-api-client-libraries together?

Is it possible to use the older GData Apis and the newer google-apis-java-client libraries in the same app? Reason I ask is I am using the new client libraries for accessing spreadsheets in google ...
1
vote
1answer
960 views

Creating a Google HTTP Transport Object for Android HTTP Request

I'm creating an Android app and trying to use Google Places API through Google APIs Client. I've been following this example: http://ddewaele.blogspot.com/2011/05/introducing-google-places-api.html ...
1
vote
1answer
470 views

Trying to access google places using google api client in GAE

I am trying to access google places api from appengine using code like this: String PLACES_DETAILS_URL = "https://maps.googleapis.com/maps/api/place/details/json"; // setup up the HTTP ...
1
vote
1answer
793 views

AccountManager seems to return wrong authToken

I'm working on a Google Tasks App with the new API, but I can't get the authorization to work. I'm using the Android AccountManager to get an authToken, the weird thing is I'm getting an error stating ...
1
vote
0answers
445 views

How to use OAuth2 in google-api-java-client?

I am trying to use the PredictionSample in google-api-java-client, but with ClientLogin authentication it gives me error: User is not a trusted tester I have activated the Google Prediction API in my ...
1
vote
1answer
146 views

Get gCal:color from google api for java?

I'm trying to acquire the <gCal:color value="xxxxxx"> value attribute from the Atom XML response in the google-api-java-client on Android. For some reason it isn't getting parsed, despite having ...
1
vote
2answers
2k views

Google Document Sample with google-api-java-client in Android

I am making a simple apps for Android, This apps have some function: - Upload - Download - ShowAllFile When i use Gdata, it's easy to make this function in Java But Gdata didn't support Android. ...
1
vote
1answer
561 views

google-api-java-client: samples

A silly question: is there an easy way (zip/jar) to download the samples of google-api-java-client? (vs one by one by browsing the sources)
1
vote
1answer
343 views

want to access google books from android app

I am pretty new to android; I would like to access google books from my android app. Can anyone provide any pointers, sample code, or advice on how to get going here? Thanks!
1
vote
2answers
1k views

Updating google docs document with google api java client

I have gotten almost a complete API to work, with creating and deleting documents and folders. But I fail at updating documents. It was very easy when using gdata, but since this code has to work on ...
1
vote
1answer
200 views

How do I create classes that represent complex xml tag structures in google-api-java-client

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 ...

1 2 3