final FacebookClient fb = new DefaultFacebookClient(USER_TOKEN, Version.LATEST);
byte[] arrayImage = Files.readAllBytes(new File(imageFilePath).toPath());
JsonObject obj = fb.publish("GROUP_ID/photos", JsonObject.class,
BinaryAttachment.with("jpg", arrayImage),
Parameter.with("message", "Post my image into group"));