Hi,
$ks = $client->generateSession(
KALTURA_ADMIN_SECRET,
'',
\KalturaSessionType::ADMIN,
KALTURA_PARTNER_ID,
86400,
$sessionPrivileges
);
Previously, I set sessionPrivileges = ‘’, I am able to get 30k records.
After reading the doc
I set sessionPrivileges = ‘disableentitlement’, I am able to get 50k records, which is a big improvement.
Is there any setting that I can get all entries? I need to get 90k records.
Ref: https://knowledge.kaltura.com/kalturas-api-authentication-and-security
jess
May 21, 2018, 11:25am
2
Hi @kenpeter ,
Please see my reply here:
Hi @kenpeter ,
I’m not sure I understand the current situation… are you saying that when you make a media->list() [or baseEntry->list() if done via KMC] request without using the KalturaMediaEntryFilter and setting one of the following members/criteria:
categoriesFullNameIn=
categoriesIdsMatchAnd=
categoriesIdsNotContains=
categoriesMatchOr=
categoriesIdsMatchOr=
categoriesMatchAnd=
You get back ~90,000 records and when passing one of the category filter…
Also, you can use the following repo as reference:
Running accountdump.php
will produce an XLSX with all the entries, or of entries matching certain criteria.
See https://github.com/kaltura/Kaltura-Library-Export-Excel/#configurations-and-running-the-script
https://github.com/kaltura/Kaltura-Library-Export-Excel/blob/master/accountdump.php#L13