https://github.com/codepath/android-oauth-flickr-demo
Android App Using RestClientTemplate for Flickr
https://github.com/codepath/android-oauth-flickr-demo
Last synced: 8 months ago
JSON representation
Android App Using RestClientTemplate for Flickr
- Host: GitHub
- URL: https://github.com/codepath/android-oauth-flickr-demo
- Owner: codepath
- Created: 2013-06-07T21:50:47.000Z (over 12 years ago)
- Default Branch: master
- Last Pushed: 2018-02-18T20:28:47.000Z (almost 8 years ago)
- Last Synced: 2023-05-10T14:13:27.433Z (over 2 years ago)
- Language: Java
- Size: 822 KB
- Stars: 23
- Watchers: 16
- Forks: 27
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
android-oauth-flicker-demo
==========================
Android App Using [RestClientTemplate](https://github.com/codepath/android-rest-client-template) for Flickr

## Setup
1. To get an Flickr API key, visit [https://www.flickr.com/services/apps/create/apply/](https://www.flickr.com/services/apps/create/apply/).

2. Click on Apply for Non-Commercial Key.
3. Fill out a name and description of the app. Make sure to accept terms of use and click Submit.
4. You should see `Done! Here's the API key and secret for your new app:`.
* Set the key value to be the `REST_CONSUMER_KEY`.
* Set the secret value to be the `REST_CONSUMER_SECRET`.
Check the [source files in this repo](https://github.com/codepath/android-oauth-flickr-demo/tree/master/app/src/main/java/com/codepath/apps/restclienttemplate) for a simple example of how to build an authenticated client.
You can review a detailed guide for using the RestClientTemplate to build OAuth based REST applications in the [android-rest-client-template README](https://github.com/codepath/android-rest-client-template/blob/master/README.md).