Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
使用java api创建时如何将谷歌相册设置为公开
我正在使用 AlbumEntry 使用 PicasawebService 类创建相册
您可以使用
AlbumEntry.setAccess(String access)
方法
默认情况下,创建的 ablum 将是私有的。要明确公开专辑,您可以使用public作为方法参数。
所以你需要打电话
albumEntryObject.setAccess("public");
在调用之前
picasawebService.insert(..)
方法。