I'm developing an app that should be able to upload photo to a Facebook page business and tag a user in that photo.
My problen is that the photo upload well but when I tried to tag the photo, it isn't visible in the Facebook page, in the information of the photo shows that tag exist but with a message "requested tag".
this is my code summarized:
FacebookType publishPhotoResponse = facebookClient.publish("me/photos", FacebookType.class,
BinaryAttachment.with("photo.jpg", readImagen(this.namePhoto)),
Parameter.with("message",this.message));
String photoId= publishPhotoResponse.getId();
try {
String relativePath = photoId + "/tags/" + userId;
StringBuilder sb = new StringBuilder("access_token=");
sb.append(URLEncoder.encode(token_user, "UTF-8"));
sb.append("&x=");
sb.append(URLEncoder.encode("50", "UTF-8"));
sb.append("&y=");
sb.append(URLEncoder.encode("50", "UTF-8"));
URL url = new URL("https://graph.facebook.com/"+relativePath);
HttpURLConnection httpCon = (HttpURLConnection) url.openConnection();
httpCon.setDoOutput(true);
httpCon.setRequestMethod("POST");
httpCon.setRequestProperty("Content-Type", "multipart/form-data");
httpCon.setRequestProperty("Content-Length", "" + sb.toString().length());
OutputStreamWriter out = new OutputStreamWriter( httpCon.getOutputStream());
out.write(sb.toString());
out.flush();
System.out.println(httpCon.getResponseCode());
System.out.println(httpCon.getResponseMessage());
System.out.println(sb.toString());
System.out.println(out.getEncoding());
System.out.println(out.toString());
System.out.println("url : "+url);
} catch (IOException ex) {
System.out.println(ex);
}
And in the console show me this information:
500
Internal Server Error
access_token=XXXXXXXXXX....XXXX..X&x=50&y=50
UTF8
java.io.OutputStreamWriter@1eb13dc
url : https://graph.facebook.com/XXXXXXXXXXXXX/tags/XXXXXXXXXXXXX
I do not know what the problem, according to the 500 error seems that the error is not mine, but maybe I'm not doing it correctly. Could someone help me?