如何在应用程序中的项目中搜索存储在电子邮件(而非文本)字段中的电子邮件地址?
仔细查看文档,看来我可以使用过滤器并将响应限制为一项:
$attributes = array (
'limit' => 1,
'filters' => array ('email' => array ('value' => $person->email, 'type' => 'work') )
);
$collection = PodioItem::filter($app_id, $attributes);
但是,出现以下PodioBadRequestError
错误:
Invalid value {"type": "work", "value": "joe.bloggs@example.com"} (object): must be array
此过滤器的正确格式是什么?
或者,还有一种更合适的方法来搜索应用程序项中的电子邮件地址吗?