Hello,
i’m using cloud kmc.kaltura.com and trying to develop ratings but i getting this response:
FEATURE_FORBIDDEN: The usage of feature [rating] is forbidden
Problem occurring in all rating methods.
What does it mean? This is disabled for free users or deprecated?
Thank you,
also i’m digging but i’m unable find option to diable email notifications other way than using MediaSpace, is this possible only via MediaSpace? Or maybe there is some option to set in opt/kaltura/app/configurations/local.ini ?
You can use the eventnotificationtemplate.list() API to list all event notification objects configured for your partner.
If you only want the email notifications, use:
$filter = new KalturaEventNotificationTemplateFilter();
$filter->typeEqual = KalturaEventNotificationTemplateType::EMAIL;
Guys i have next question, how are connected:
rating:
$ratingPlugin = RatingPlugin::get($this->client);
return $ratingPlugin->rating->checkRating($entryId);
with like:
return $likePlugin->like->checkLikeExists($entryId, $userId);
and why rating is touch after like request? Shouldn’t they be different things?