PODIO PHP API,不返回现有联系人

时间:2014-10-03 12:54:29

标签: php podio

我正在尝试在创建之前检查是否存在联系人。

下面的

是我的代码示例

$contact_fields_index = array("name"=>"Paul Pierre", "mail"=>"paul@barnardmail.net");
$existingContacts = PodioContact::get_for_app( $PODIO_APPID , $contact_fields_index);

$existingContacts始终为空,即使工作区中存在联系人。

我做错了什么?

1 个答案:

答案 0 :(得分:0)

我怀疑你的邮件可能不匹配,或者你的名字。 你没有使用属性参数吗?例如:

$existingContacts = PodioContact::get_for_app( $PODIO_APPID );

这应该带回所有联系人,当输出$ existingContacts数组时,你可以看到你正在寻找的是否在那里。