Referred API documentation of bigbluebutton for create call. My API URL is like this: https://server_name/bigbluebutton/api/create?name=Sample&meetingID=B3XdYtdzdoV1&attendeePW=1234&moderatorPW=2345&checksum=d7b20f96f3616a69ae4a50eb1c0472428283c63a Still it is showing the checksum error. I really have no idea why I am facing this error because according to me everything is correct
$defaults = array(
'name' => '',
'meetingID'=>'',//MeetingId
'attendeePW'=>'',//pass the attendee(student) password
'moderatorPW'=>'',//pass the moderator (instructor) password
'welcome'=>'',
'maxParticipants'=>'',
'record'=>false,
'duration'=>'', //(minutes)
'meta'=>'',//metavalue
'allowStartStopRecording'=>false,
'webcamsOnlyForModerator'=>'',//boolean
'logo'=>'',//url
'bannerText'=>'',
'bannerColor'=>'',
'copyright'=>'',
'meta_endCallbackUrl'=>site_url(), //redirect to this site
'meta_bn-recording-ready-url'=>'',
);
$args = array_merge($defaults, $args);
$salt = $this->get_salt();
$url = $this->get_server().'api/create?'.http_build_query($args); $checksum = sha1('create'.http_build_query($args).$salt);
$bbb_url = $url.'&checksum='.$checksum; $response = wp_remote_get($bbb_url);
when tried print_r($bbb_url); It is showing above url with the error message refer: a link!