Created
September 22, 2023 17:32
-
-
Save digamber89/c8ff9312292d29cc7729d301f44aa41a to your computer and use it in GitHub Desktop.
Join Via Browser - Temporary Fix
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
function temp_zoom_link_retrieve( $meeting_id ) { | |
$meeting_details = json_decode( zoom_conference()->getMeetingInfo( $meeting_id ) ); | |
$pwd = ! empty( $meeting_details->password ) ? $meeting_details->password : false; | |
$meeting_args = [ 'password' => $pwd ]; | |
return \Codemanas\VczApi\Helpers\Links::getJoinViaBrowserJoinLinks( $meeting_args, $meeting_id ); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment