api->call('wall.get', [ 'domain' => $domain, 'offset' => $offset, 'count' => $count, 'copy_history_depth' => 10 ]); return $result['response'] ?? [ 'count' => 0, 'items' => [] ]; } // id = '-93243530_2113' public function getById(string $id): array { $result = $this->api->call('wall.getById', [ 'posts' => [ $id ], 'copy_history_depth' => 10 ]); return $result['response'] ?? [ 'items' => [] ]; } }