6 messages in com.googlegroups.google-base-data-apiRe: How to get detailed error code/de...
FromSent OnAttachments
Steve Rumberg09 Jan 2007 11:12 
Alexandru Balut09 Jan 2007 14:16 
Steve Rumberg09 Jan 2007 21:39 
Alexandru Balut10 Jan 2007 00:44 
Steve Rumberg15 Jan 2007 23:12 
dobrovi21 Feb 2007 08:10 
Subject:Re: How to get detailed error code/descriptions?
From:Steve Rumberg (srum@gmail.com)
Date:01/15/2007 11:12:17 PM
List:com.googlegroups.google-base-data-api

Alexandru,

Thank you so much-- I changed it as you suggested and it worked!

Yes, I have used "curl_error" hoping get useful error info, but the only info it gives me is: "The requested URL returned error: 400"

I don't know how to display the detailed error information that you were able to get. I would like to know how to display the details that you included below your name.

If you know how to get more info from it, please let me know. The code I am using now for displaying the error is:

$result = curl_exec($ch); /* Execute the HTTP request. */ if (curl_errno($ch)) { print '<p>'; print curl_error($ch); print $attributes; print 'Authorization: AuthSub token="' . $_POST['token'] . '"' . ', X-Google-Key: key=' . $developerKey . ',' . 'Content-Type: application/atom+xml'; print '</p>'; }

Thanks again, Steve