$person = new Google_Service_PeopleService_Person($create_data[0]);
$exe = $service->people->createContact($person);*/
This has been used to create a single contact.Which class is used for batch to create a contact ?
$person = new Google_Service_PeopleService_Person($create_data[0]);
$exe = $service->people->createContact($person);*/
This has been used to create a single contact.Which class is used for batch to create a contact ?
There is no "implemented batch class" as such, instead you need to perform an HTTP request to the batch endpoint URL.
See also the following posts: