我正在尝试在创建之前检查是否存在联系人。
下面的是我的代码示例
$contact_fields_index = array("name"=>"Paul Pierre", "mail"=>"paul@barnardmail.net");
$existingContacts = PodioContact::get_for_app( $PODIO_APPID , $contact_fields_index);
$existingContacts
始终为空,即使工作区中存在联系人。
我做错了什么?
答案 0 :(得分:0)
我怀疑你的邮件可能不匹配,或者你的名字。 你没有使用属性参数吗?例如:
$existingContacts = PodioContact::get_for_app( $PODIO_APPID );
这应该带回所有联系人,当输出$ existingContacts数组时,你可以看到你正在寻找的是否在那里。