Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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 a general purpose API for dealing with web data. In contrast, gdata-java-client handles google specific data (e.g., YouTube API). Is this a correct characterization?

If so, is gdata-java-client built on top of google-api-java-client?

share|improve this question

1 Answer

up vote 4 down vote accepted

The answer is probably simpler than you expect. :)

The google-api-java-client is a newer library from Google. It can access more APIs and runs on Android. It's still in beta, though. On the other hand, gdata-java-client is stable and more mature, but does not work on Android.

If you're using gdata APIs and you don't need to run on Android, I recommend you use the gdata-java-client library. If you need to run on Android, google-api-java-client

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.