我制作了一个在我的Facebook帐户上发布相册的应用程序。 它曾经在几个月前工作,但现在应用程序发布的专辑不公开。 看我的脸书,相册有公共权限,但我的朋友看不到它们。只有我通过Facebook手动上传的那些。
FacebookType publishPhotoResponse = (FacebookType) facebookClient.publish("me/albums", FacebookType.class,Parameter.with("name", album));
String idAlbum=publishPhotoResponse.getId();
publishPhotoResponse = (FacebookType) facebookClient.publish(idAlbum+"/photos", FacebookType.class, BinaryAttachment.with(file.getName(), is), Parameter.with("message", texto));
感谢您的帮助,我不知道还能做些什么。 安德烈