I had so many albums in my picasa web, some of them are private. Now, I want to retrieve only those private album using the Google Picasa Web Api. I have read the documentation and found out that I need to make an authenticated request in order to gain access to private album.
With this url:
$url = 'http://picasaweb.google.com/data/feed/api/user/'.$username.'?kind=album&thumbsize=220c&access=private&max-results='.$list.'';
This returns an error that I'm not authorized to get the info/data.
Any help on how to get authenticated. There are PHP classes but for Zend Framework only which I don't have enough knowledge on it.
Thanks,