-
Notifications
You must be signed in to change notification settings - Fork 3
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I'm not seeing support for KAF in the PHP 5.3 SDK #1
Comments
Looks like class names have changed some
These are the classes I had success with from the PHP SDK I downloaded. |
This should be the proper API from the SDK. It's in line with the sample code that is shown here: https://developer.kaltura.com/console/service/scheduleResource/action/add |
Is this inconsistent with anything you saw in the documentation? |
Yes I have not found a KalturaScheduleClientPlugin in the PHP SDK that I downloaded recently.
|
Kaltura provides several different PHP libs, which you can find here: https://developer.kaltura.com/api-docs/Client_Libraries KalturaScheduleClientPlugin is defined in the PHP 5.3+ lib. |
$schedulePlugin = KalturaScheduleClientPlugin::get($client);
$scheduleResource = new KalturaLocationScheduleResource();
$scheduleResource->description = "My first meeting room";
$scheduleResource->name = "Room-1";
$scheduleResource->tags = "vcprovider:newrow";
$result = $schedulePlugin->scheduleResource->add($scheduleResource);
This looks good, but I am not finding it in the SDK
The text was updated successfully, but these errors were encountered: