0

JavaAPIを使用して作成するときにGoogleフォトアルバムを公開に設定する方法

AlbumEntryを使用して、PicasawebServiceクラスを使用してアルバムを作成しています

4

1 に答える 1

2

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.

于 2013-02-28T10:53:56.047 に答える