Hi, I have problems retrieving data from my private albums (the ones that require authkey but not a login) when running php scripts with curl calls. I can retrieve the feed just fine in my browser (chrome)
http://picasaweb.google.com/data/feed/api/user/tiedeman?kind=album&authuser=0&authkey=Gv1sRgCILs25ntz6SBTg There should be a album called 'testalbum' but there is no album when requesting the same URL from php with curl. Here is my code: $url = "http://picasaweb.google.com/data/feed/api/user/tiedeman? kind=album"; $url .= '&authuser=0&authkey=Gv1sRgCILs25ntz6SBTg'; $ch = curl_init($url); curl_setopt($ch, CURLOPT_HEADER, TRUE); curl_exec($ch); curl_close($ch); What am I doing wrong? Thanks! Jörg -- 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.
