我正在尝试理解并使用Picasa Api,我正在使用此示例https://developers.google.com/picasa-web/docs/2.0/developers_guide_java?hl=nl-NL, 所以我试图使用以下代码创建一个新专辑:
AlbumEntry myAlbum = new AlbumEntry();
myAlbum.setTitle(new PlainTextConstruct(title));
myAlbum.setDescription(new PlainTextConstruct(description));
AlbumEntry insertedEntry = myPicasa.insert(postUrl, myAlbum);
现在是我的问题,如何找到postUrl,或者我需要填写什么?
谢谢!
答案 0 :(得分:1)
根据链接文档,postURL
似乎是需要插入照片的相册的ID。它可以用Java构建:
URL albumPostUrl = new URL("https://picasaweb.google.com/data/feed/api/user/username/albumid/albumid");
答案 1 :(得分:0)
这是您添加相册所需的内容。
URL postUrl = new URL("https://picasaweb.google.com/data/feed/api/user/" + username);