Hi friends i m new in android , i try to upload the image in flickr and text but iam not able to upload the image in flickr i read many blogs http://blog.theunical.com/java/flickr-example-to-upload-photos-using-java/ and http://www.flickr.com/services/api/ but i m not get good answer so please help me frnd how to upload the image in flickr , if u have a sample code please share with me
Asked
Active
Viewed 1,433 times
3
-
Please post what you have tried, or what errors you got – Renjith K N Mar 20 '13 at 05:58
-
@RenjithKN sir im trying this code which is given in step 3 and step 4 http://blog.theunical.com/java/flickr-example-to-upload-photos-using-java/ – user2189505 Mar 20 '13 at 06:00
2 Answers
2
Have a look on Flickr Library and the source code which is specially designed to work with android.You can go for this code also it works fine,
Have a look the full source code available!!
Hope it may help You!!!

Janmejoy
- 2,721
- 1
- 20
- 38
0
Try with this..
Intent intent = new Intent(getApplicationContext(),
FlickrjActivity.class);
intent.putExtra("flickImagePath", fileUri.getAbsolutePath());
startActivity(intent);
See full answer here.

Community
- 1
- 1

Bhavesh Hirpara
- 22,255
- 15
- 63
- 104