$params = array( 'id' => ???, 'video_fields' => 'id,name,shortDescription' ); Only worked when i used the following code: $params = array( 'video_id' => ???, 'video_fields' => 'id,name,shortDescription' ); I had to change id to video_id
$params = array(
'id' => ???,
'video_fields' => 'id,name,shortDescription'
);
Only worked when i used the following code:
$params = array(
'video_id' => ???,
'video_fields' => 'id,name,shortDescription'
);
I had to change id to video_id