Api::is_authorized()

Checks whether the current Zoom API integration is authorized or not.

The check is made on the existence of the refresh token, with it the token can be fetched on demand when required.


Return

(bool) Whether the current Zoom API integration is authorized or not.


Top ↑

Source

File: src/Tribe/Meetings/Zoom/Api.php

	public function is_authorized() {
		return ! empty( $this->refresh_token );
	}

Top ↑

Changelog

Changelog
Version Description
1.0.0 Introduced.