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.
Bundle params = new Bundle();
String tags = "";
StringBuilder sb = new StringBuilder();
for (int i = 0; i < ischecked.length; i++) {
if (i == 0) {
    sb.append("[");
}
if (ischecked[i]) {
    sb.append("{\"tag_uid\":" + FBFriendlist.get(i).getFBFriendid() + "},");
}
if (i == ischecked.length - 1) {
    sb.replace(sb.length() - 1, sb.length(), "]");
    tags = sb.toString();
}
}
params.putString("tags", tags);

Request requestphoto = new Request(Session.getActiveSession(),"me/photos", params,
                            HttpMethod.POST, new Request.Callback() {

 @Override
 public void onCompleted(Response response) {
     Log.e("id", response.getGraphObject().getProperty("id").toString());
     Intent intent = new Intent(PaintQuitGameScene.this, UserProfileScene.class);
     startActivity(intent);
 finish();
 }
 });

 requestphoto.executeAsync();

When execute, it return nullpointerexception.

What is the format for tags?

share|improve this question
Where are you getting the NPE? It's likely that the response.getGraphObject() does not have an "id" property, which is why your .toString() call is generating an NPE. Try calling response.getError, and see if there were any errors returned from the service. From the way you're creating your request, I can say with a high degree of confidence that your request is not properly formatted. Try using the graph explorer tool to test your requests first - developers.facebook.com/tools/explorer – Ming Li Jan 29 at 17:44
@MingLi When I comment out the param.putstring. It return no error, can get the id property. – Alan Lai Jan 30 at 2:20
This is because "tags" is not a valid parameter for a GET request for /me/photos, which is why you're probably getting an error response back from the server. – Ming Li Jan 30 at 17:42
@Ming Li, I had added String Array into tags it return no error but not successful tag friend. The String Array was {1111111,22222222} – Alan Lai Jan 31 at 3:15
I'm not sure what you're trying to do. Are you trying the get pictures that your friends are tagged in, or tag your friends in some pictures? You should read the graph API documentation for possible parameters to the /me/photos request developers.facebook.com/docs/reference/api/user – Ming Li Jan 31 at 18:27
show 4 more comments

1 Answer

See the photo API reference here: https://developers.facebook.com/docs/reference/api/photo/#tags

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.