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