You are here

protected function MoxtraService::getMeetingRecordingInfoUrl in Opigno Moxtra 3.x

Same name and namespace in other branches
  1. 8 src/MoxtraService.php \Drupal\opigno_moxtra\MoxtraService::getMeetingRecordingInfoUrl()

Returns URL to get a meeting recording info.

Parameters

int $owner_id: User ID.

string $session_key: Session ID of the related to the Live Meeting.

Return value

string URL.

1 call to MoxtraService::getMeetingRecordingInfoUrl()
MoxtraService::getMeetingRecordingInfo in src/MoxtraService.php
Returns meeting recording info.

File

src/MoxtraService.php, line 295

Class

MoxtraService
Implements Moxtra REST API.

Namespace

Drupal\opigno_moxtra

Code

protected function getMeetingRecordingInfoUrl($owner_id, $session_key) {
  $token = $this->moxtraConnector
    ->getToken($owner_id);
  return $this->moxtraConnector
    ->getUrl() . "/v1/meets/recordings/{$session_key}?access_token={$token}";
}