I'm trying to  get photos from my public album using the following:
 <script src="http://www.google.com/jsapi?key=MYKEY type="text/
javascript"></script>
<script type="text/javascript">
 google.load("feeds", "1");
google.setOnLoadCallback(OnLoad);
 function OnLoad() {
 var feed = new google.feeds.Feed("https://picasaweb.google.com/data/
feed/api/user/MYEMAIL/album/MYALBUM?kind=photo&access=public");
      feed.load(feedLoaded);
    }
function feedLoaded(result) {
        alert(result.feed.entries.length);// For testing
....  The url of the feed gives me the correct result but in my
program the feed is always empty
I changed the api to base with no more success, what do I do wrong?

-- 
You received this message because you are subscribed to the Google Groups 
"Google Picasa Web Albums API" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/google-picasa-data-api?hl=en.

Reply via email to