JavaAPIを使用して作成するときにGoogleフォトアルバムを公開に設定する方法
AlbumEntryを使用して、PicasawebServiceクラスを使用してアルバムを作成しています
JavaAPIを使用して作成するときにGoogleフォトアルバムを公開に設定する方法
AlbumEntryを使用して、PicasawebServiceクラスを使用してアルバムを作成しています
You can use the
AlbumEntry.setAccess(String access)
method
By default the ablum created will be private. To explicity make the album public you can use public as the method parameter.
So you need to call
albumEntryObject.setAccess("public");
before calling the
picasawebService.insert(..)
method.