On Thu, May 15, 2008 at 8:10 AM, tlyuhas <[EMAIL PROTECTED]> wrote: > I'm now stuck at around step 2). I am getting the authorization token > and am passing it back but I'm getting a "Feed Processing Error." > I've even tried converting the "%40" to "@" as I've seen some others > here do but that didn't make a difference. These are the headers > (except I modified the token to post it here): > > HTTP_Request Object ( [_url] => Net_URL Object ( [options] => Array > ( [encode_query_keys] => ) [url] => > http://www.google.com/calendar/ical/[EMAIL PROTECTED]/public/basic.ics > [protocol] => http [username] => [password] => [host] => www.google.com > [port] => 80 [path] => /calendar/ical/ > [EMAIL PROTECTED]/public/basic.ics > [querystring] => Array ( ) [anchor] => [useBrackets] => 1 [user] => > [pass] => ) [_method] => GET [_http] => 1.1 [_requestHeaders] => Array > ( [host] => www.google.com [user-agent] => PEAR HTTP_Request class > ( http://pear.php.net/ ) [connection] => close [accept-encoding] => > gzip [authorization] => GoogleLogin > Auth=ABC123D52wBZBdRn0c0cPNNr1JZsR379rWzvayIFzvAm- > WLcrQ13DlhmXPi0oAiDj7e7SsxDhH6ewlSfynAEACC3IvRS15EbRkLUfS_Z6k4BuCQZkKS0oKcpcMZqNhycW23rIbN8FjyI- > J4MO1HYTf6jbbbuw9bgBLXIYlvYP-XyVTX8bA ) [_user] => [_pass] => [_sock] > => [_proxy_host] => [_proxy_port] => [_proxy_user] => [_proxy_pass] => > [_postData] => Array ( ) [_body] => [_bodyDisallowed] => Array ( [0] > => TRACE ) [_postFiles] => Array ( ) [_timeout] => 5 [_response] => > [_allowRedirects] => 1 [_maxRedirects] => 3 [_redirects] => 0 > [_useBrackets] => 1 [_listeners] => Array ( ) [_saveBody] => 1 > [_readTimeout] => [_socketOptions] => ) > > Anything jump out as obvious?
There are two things wrong with your url. 1) It's a public url, so it does not require authorization. You probably want to use a url like: http://www.google.com/calendar/ical/[EMAIL PROTECTED]/private/basic.ics instead. 2) Since you have given me a public url, I can see that there is something wrong with this feed. When I click on it in my browser, I get the same feed processing error. Try getting the magic-cookie url from the UI and seeing if you can view that. Ray --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Google Calendar Data 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-calendar-help-dataapi?hl=en -~----------~----~----~----~------~----~------~--~---
