Hi Ryan. Thanks for the reply. If I go directly to:
http://picasaweb.google.com/data/feed/api/user/userID?kind=album
I see my albums listed.
If I go to the same url via my proxy, I get the same feed, minus the
albums. It's weird. I don't think they have to be public in order to
see them this way, especially since going to the url directly displays
the list.
Thanks,
Brandon
On Jan 27, 9:05 pm, "Ryan Boyd (Google)" <api....@google.com> wrote:
Hi Brandon,
That is the correct URL -- Is it possible that all your albums are
non-public and thus not appearing in an unauthenticated feed request?
Cheers,
-Ryan
On Jan 27, 2008 10:16 AM, brandon <jenn...@gmail.com> wrote:
I'm using an ASP script. I get only part of the feed. I've tried it
in PHP as well, but the same thing happens. I get all of the feed
info except for the <entry> nodes.
<%@ LANGUAGE=VBScript%>
<%
Response.Buffer=True
Dim MyConnection, callUrl, TheData
Set MyConnection = Server.CreateObject("Microsoft.XMLHTTP")
MyConnection.Open "GET", callUrl, False
MyConnection.Send
TheData = MyConnection.responseText
Response.ContentType = "text/xml"
Response.Write (TheData)
Set MyConnection = Nothing