哪个类名用于在 google people api 中创建批处理联系人

问题描述

$person = new Google_Service_PeopleService_Person($create_data[0]);
$exe = $service->people->createContact($person);*/

这个已经用于创建单个联系人。哪个类用于批量创建联系人?

解决方法

文档解释了如何perform batching requests for the People API

没有“已实现的批处理类”,相反,您需要对批处理端点 URL 执行 HTTP 请求。

另见以下帖子: