2

如何获取用户或页面的 Google Plus 相册?我可以把活动(帖子/视频/照片)放在一起。

这是我正在使用的代码:

var provider = new NativeApplicationClient(GoogleAuthenticationServer.Description);
provider.ClientIdentifier = GoogleIdentifier;
provider.ClientSecret = GoogleSecret;

ActivitiesResource.Collection collection = new ActivitiesResource.Collection();

var service = new PlusService();
service.Key = GoogleKey;
ActivitiesResource.ListRequest list = service.Activities.List(ProfileID, collection);

foreach (Activity activityFeed in list.Fetch().Items)
{
    var title = activityFeed.Title;
    foreach (Activity.ObjectData.AttachmentsData attachment in activityFeed.Object.Attachments)
    {
         if (attachment.ObjectType == "photo")
        {
            //add to list of photo
        }

        else if (attachment.ObjectType == "video")
        {
            //add to list of video
        }
    }
} 

此功能提供活动提要。我需要获取页面所有专辑的列表。

我正在使用google-api-dotnet-client

4

1 回答 1

3

Google+ API 尚不支持直接访问相册和照片。您可以使用 Picasa 网络相册数据 API(因为这是存储 Google+ 照片的位置),使用与访问 Google+ API 相同的个人资料/页面 ID。 https://developers.google.com/picasa-web/

于 2012-07-07T19:53:20.610 回答