Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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,

share|improve this question
Still no answers or suggestions:( – Eslam Yousef Mohammed Dec 22 '12 at 13:21

1 Answer

After along search, i found that :-


  • Also the "tags" is a String list no a string.

    parameters.putStringArray("tags", new String[]{PAGE_ID}); parameters.putString("place",Cairo_ID);

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.