PodioComment::get_for( $ref_type, $ref_id ) 忽略属性

PodioComment::get_for( $ref_type, $ref_id ) ignoring attributes

我正在通过 PHP 收集 Podio 项评论,最近发现评论数已超过 100,导致最近的评论(#101 及以上)未返回。我似乎无法获得限制或抵消作为收集最新评论的机制。无论我发送什么值,我都会从 offset = 0.

开始返回 100 个项目(默认限制)

下面的结构有什么不对的地方吗?

$comments=PodioComment::get_for( 'item', $item->id, array('limit' => 100, 'offset' => 50));

此错误 returns 100 条评论,从 0 开始。

感谢任何反馈...

我使用的是过时版本的 podio-php-master。更新到 github 上可用的最新稳定版本解决了该问题。