I am unable to edit an event Google calender .I am not getting the edit
link in the responce from server how to get the edit link .My code in
php is
$host="66.102.7.99";
$path="/calendar/feeds/[EMAIL PROTECTED]/private/full";
$authStr=xxxxxx;
$fp1 = fsockopen($host,80);
$putStr="GET ".$path." HTTP/1.1 \r\n";
$putStr.="Content-type: application/atom+xml \r\n";
$putStr .= "Content-length: 0 \r\n";
$putStr .= "Authorization: GoogleLogin auth=" . $authStr . " \r\n";
$putStr .= "Connection: close\r\n";
$putStr .= "\r\n";
fputs($fp1,$putStr);
while (!feof($fp1)) {
echo fgets($fp1, 128);
}
fclose($fp1);
I am getting a responce saying
The requested URL
/calendar/feeds/[EMAIL PROTECTED]/private/full
was not found on this server.
But with above [EMAIL PROTECTED] i
am adding events in the calender
Is any thing wrong in code
Please let me know
--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---