I'm using Facebook SDK3.0 , and i want to post a photo on my photos and tag a "Friend/Page" in it.
I've seen that we MUST provide a place with the tag parameter, and i'm some how confused about that, what is the place should be..?!
And is there another way to tag a "Friend/Page" on my photo..?!
My code:-
Bundle parameters = new Bundle();
parameters.putParcelable(PICTURE_PARAM, image);
parameters.putString("tags", PAGE_ID);
parameters.putString("place", ??????);
parameters.putString("message", comment );
String graphPath = MY_PHOTOS;
Session activeSession = Session.getActiveSession();
Request postToPageRequest = new Request(activeSession, graphPath);
postToPageRequest.setParameters(parameters);
postToPageRequest.setHttpMethod(HttpMethod.POST);
postToPageRequest.executeAsync();
Thanks,