i have used this code to upload image to facebook successfully
Request uploadRequest = Request.newUploadPhotoRequest(
Session.getActiveSession(), bmp, new Request.Callback() {
@Override
public void onCompleted(Response response) {
Toast.makeText(FacebookUpload.this,
"Photo uploaded successfully",
Toast.LENGTH_LONG).show();
now the problem is i want to add a link as i upload images, how i do this, the link has to appear under the images, any help is appreciated