Upload Image on Flickr with android

三世轮回 提交于 2019-12-04 02:36:44

问题


i need to integrate Flickr with android. I am done with authentication.i need to upload image to flickr but i am unaware how to do same. i refer document : http://www.flickr.com/services/api/upload.api.html for the same. Can anybody help me


回答1:


//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);
    }
};


来源:https://stackoverflow.com/questions/11715935/upload-image-on-flickr-with-android

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!