Questions tagged [gdata-java-client]

Use for the gdata-java-client library.

Google gives different gdata services. With the use of different libraries we're able to access google data. This libraries are written in different languages. gdata-java-client library is one of them. With use of this library we're able to interact with google account data e.g.,add new event in our google calendar.

For more information:

Above links gives idea about gdata-java-client and use of it.

13 questions
6
votes
0 answers

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 Android activities. Experts, please advise as to how…
user264953
  • 1,837
  • 8
  • 37
  • 63
5
votes
1 answer

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 like to use OAuth2 -- however with OAuth2 I am not…
4
votes
1 answer

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 confusing. It seems that google-api-java-client is…
speedplane
  • 15,673
  • 16
  • 86
  • 138
3
votes
3 answers

Using Android AccountManager to get authtoken for gdata

So I am trying to sync to google docs, without having to ask the user for his credentials. I use this code to get an auth-token: AccountManager mgr = AccountManager.get(activity); authToken = mgr.blockingGetAuthToken(account,…
pgsandstrom
  • 14,361
  • 13
  • 70
  • 104
2
votes
0 answers

finding a GroupContactEntry needle in a gData hackstack ...?

Is there a better way to obtain the Id of a specific ContactGroupEntry from your gData contacts without having to retrieve and iterate through the entire List? // contactsService has been properly initialized... // hunting for the…
jonathan
  • 41
  • 4
1
vote
0 answers

What are the requirements for use of gdata java library in contact API?

I am newbie with google authentication. I want to know that for develop small api that add,delete and display gmail contact with use of java. I had download java library for that but not perfect idea how to use it with eclipse and what are the pre…
Ashvin
  • 4,010
  • 8
  • 23
  • 26
1
vote
1 answer

com.google.gdata.util.AuthenticationException: Error connecting with login URI

I have written a Java application which I am launching with the following command: java -jar MyApp.jar The application uses Google's GData Java libraries to edit a Google Spreadsheet. When I run this application from my Mac, it runs fine. However,…
Tom Marthenal
  • 3,066
  • 3
  • 32
  • 47
0
votes
1 answer

Trouble fetching Google calendar event exceptions by event id in Java

I've been working with the Gdata API for Java (v2), and have figured out how to fetch events by their id. However, I'm having trouble fetching exceptions to recurring events. For a regular event, I would fetch it as such: CalendarEventEntry event =…
atraudes
  • 2,368
  • 2
  • 21
  • 31
0
votes
1 answer

uploading video on youtube using youtube java client library api

Following is the error: Sorry, your upload was invalid:
0
votes
1 answer

How to use querying by date in Java Client Library?

I want to retrieve google documents that were uploaded after certain date using Java Client Library. I use this code: DocumentQuery query = new DocumentQuery(feedUri); query.setPublishedMin(new DateTime(new Date().getTime())); I get such exception:…
Hleb
  • 295
  • 1
  • 4
  • 15
0
votes
1 answer

How do I retrieve the email address associated with a session token from the Google Data / Google Contacts API?

Possible Duplicate: How does one retrieve the email address of a user with GData? Using the GData Java client (http://code.google.com/p/gdata-java-client/), I create an authsub request URL by using AuthSubUtil.getRequestUrl(). I then exchange…
Tyson
  • 968
  • 1
  • 6
  • 15
0
votes
1 answer

How to Delete a Google Site by its id

I am unable to find out how can I delete a Google Site given its ID. I guess I need to create the SiteEntry for that site and call delete() method, but no idea on how to create the SiteEntry with just the ID. This is how I am creating the…
momo
  • 3,404
  • 6
  • 37
  • 66
0
votes
0 answers

google-api-java-client create an unlisted map

I can create a map using the google-api-java-client with the current 1.47.1 version of the API. However, all the maps are "Public". How can I create one so it shows as "Unlisted" ? API used; http://code.google.com/p/gdata-java-client/ Sample create…
user1667016
  • 123
  • 2
  • 8