Accessing Google Bookmarks server side with PHP

seamon

New Member
I used to access my Google Bookmarks, server side with this PHP code:\[code\]$curlObj = curl_init();curl_setopt($curlObj, CURLOPT_URL, "https://www.google.com/bookmarks/?output=rss");curl_setopt($curlObj, CURLOPT_USERPWD, "[email protected]:mypassword");curl_setopt ($curlObj, CURLOPT_RETURNTRANSFER, 1);$response = curl_exec($curlObj);echo $response;curl_close($curlObj);\[/code\]Formerly, with the code above, I would have seen an XML feed.Now it shows "302 Your document has moved. Click Here".The link takes me to a login page.Any ideas?Thanks.
 
Back
Top