I'm using FB API 3.0 for Android, and according to examples for Session I use
Request request = Request.newUploadPhotoRequest(Session.getActiveSession(), image, new Request.Callback();
to upload the image. I need to add some default text to this image, but I can't figure out where to put it.
In old API there was a bundle of parameters that were sent:
params.putByteArray("picture", imgData);
params.putString(Facebook.TOKEN, accessToken);
params.putString("caption", MyGlobals.INSTANCE.activeSetting.f_name);
What is the proper way to add text to Request for newUploadPhotoRequest?
tnx.