我们使用$contact->save();
直到最近,我们的应用程序联系人中的任何一个都没有在Google联系人中更新/保存时,这种方法一直很好。
Google是否修改了我们需要更新代码以调用新api /函数的任何api?我检查了文档,但找不到任何东西。
代码:
$googleOAuth2Handler = new GoogleOAuth2Handler(CLIENT_ID,CLIENT_SEC,unserialize(SCP), REFRESH_TOKEN);
$people = new GooglePeople($googleOAuth2Handler);
$contact = $people->get($google_id);
$contact->save(); //This is the function which no longer works, but there is no error thrown.