https://github.com/hckhanh/flickrj-android
Automatically exported from code.google.com/p/flickrj-android
https://github.com/hckhanh/flickrj-android
Last synced: 2 months ago
JSON representation
Automatically exported from code.google.com/p/flickrj-android
- Host: GitHub
- URL: https://github.com/hckhanh/flickrj-android
- Owner: hckhanh
- License: other
- Created: 2015-09-14T08:45:12.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2020-10-13T09:25:53.000Z (over 4 years ago)
- Last Synced: 2025-01-13T06:44:55.467Z (4 months ago)
- Language: Java
- Size: 2.88 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 17
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
README
This is a Java API which wraps the REST-based [Flickr API](http://www.flickr.com/services/api/).
It is a new library built on top of the FlickrJAPI from http://flickrj.sourceforge.net/.
It resolves the following issues that currently exist in FlickrJ:
1. Non-Java5 Syntax. This caused a lot of WARNINGs, and didn't leverage the latest JDK features.
2. Support for Android and GAE. The old FlickrJ uses SOAP API which is not supported on GAE.
3. New Flickr OAuth 1a support: http://www.flickr.com/services/api/auth.oauth.html
4. Completely re-written with JSON response format.
5. Now built by Maven instead of Ant.
6. Added some fuctions missings in the original FlickrJ, such as GalleryInterface and CollectionInterface.
7. Use https by default for all API requests(thanks to Paul Bourke): http://code.flickr.net/2014/04/30/flickr-api-going-ssl-only-on-june-27th-2014/. Please use version 2.1.0+This project is now available on both [Google Code](http://code.google.com/p/flickrj-android/) and [GitHub](https://github.com/yuyang226/FlickrjApi4Android).
-Toby Yu([email protected])