私は Facebook SDK3.0 を使用しています。写真に写真を投稿し、その中に「友達/ページ」のタグを付けたいと思っています。
tag パラメーターを使用して場所を提供する必要があることを確認しましたが、場所はどうあるべきかについて混乱しています..?!
私の写真に「友達/ページ」のタグを付ける別の方法はありますか..?!
私のコード:-
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();
ありがとう、