コード例 #1
0
 public function getAuthHeader()
 {
     return $this->auth->getTokenType() . ' ' . $this->auth->getAccessToken();
 }
コード例 #2
0
ファイル: Platform.php プロジェクト: ITJamie/ringcentral-php
 protected function ensureAuthentication()
 {
     if (!$this->_auth->accessTokenValid()) {
         $this->refresh();
     }
 }