Видео не пускает в фейсбук через wowza
Когда я пытаюсь вставить видео в wowza, я получаю сообщение об ошибке.
Заметка:-
Толкаю видео через этот ниже код
$url = "http://localhost:8087/v2/servers/_defaultServer_/vhosts/_defaultVHost_/applications/clivestream3/pushpublish/mapentries/testraj1";
$arrayName = array(
'entryName'=>'fb-api',
'profile'=>'rtmp-facebook',
'sourceStreamName'=>'myStream',
'facebook.continuousLive'=>'true',
'facebook.title'=>'Live Test',
'facebook.destType'=>'timeline',
'facebook.destId'=>$_SESSION['fbuser-id'],
'facebook.destName'=>'My Timeline',
'facebook.description'=>'This is Wowza live test',
'facebook.accessToken'=>$_SESSION['accessToken'],
'facebook.privacy'=>'public',
'facebook.userName'=>$_SESSION['name'],
'enabled'=>'true'
);
$json = json_encode($arrayName);
$ch = curl_init($url);
curl_setopt($ch, CURLOPT_POST, true);
curl_setopt($ch, CURLOPT_POSTFIELDS, $json);
curl_setopt($ch, CURLOPT_HEADER ,0);
curl_setopt($ch, CURLOPT_RETURNTRANSFER ,1);
curl_setopt($ch, CURLOPT_CUSTOMREQUEST, "POST");
curl_setopt($ch, CURLOPT_HTTPHEADER, array(
'Accept:application/json; charset=utf-8',
'Content-type:application/json; charset=utf-8',
'Content-Length: '.strlen($json)));
$contents = curl_exec($ch);
curl_close($ch);