I was wondering if anyone is aware of any code examples for updating Google Contacts data in PHP. I have no problems authenticating and retrieving contacts using Google's provided API (http://code.google.com/p/google-api-php-client/wiki/OAuth2)
However, this does not appear to have any support for manipulating the contacts. I have also tried Zend Gdata (http://framework.zend.com/download/gdata/) to achieve this, but this works off oAuth 1.0. Which is not only deprecated, but I cannot verify my URLs (as they are on an intranet).
The guide (https://developers.google.com/google-apps/contacts/v3/) is useful, but has no specific PHP examples. The main problem I'm having revolves around trying to send authenticated cURL requests.. This guide (https://developers.google.com/gdata/articles/using_cURL#updating-entries) has been useful but still I have found no solution so far.
Any help or suggestions would be greatly appreciated!