Upload image to Flickr using android

I need to integrate Flickr with android. I ended up with authentication. I need to upload an image to flickr, but I don't know how to do it. I refer to the document: http://www.flickr.com/services/api/upload.api.html . Can someone help me

0
source share
1 answer

enter image description here

//change your key and secreat key private static final String API_KEY = "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"; //$NON-NLS-1$ public static final String API_SEC = "xxxxxxxxxxxxx"; //$NON-NLS-1$ View.OnClickListener mFlickrClickListener = new View.OnClickListener() { @Override public void onClick(View v) { if (fileUri == null) { Toast.makeText(getApplicationContext(), "Please pick photo", Toast.LENGTH_SHORT).show(); return; } Intent intent = new Intent(getApplicationContext(), FlickrjActivity.class); intent.putExtra("flickImagePath", fileUri.getAbsolutePath()); startActivity(intent); } }; 
+3
source

Source: https://habr.com/ru/post/1433800/


All Articles