Example #1
0
 /**
  * Request and store access token (self::accessToken) for self::userId
  * @return $this
  */
 public function queryAccessToken()
 {
     if (!Loader::includeModule('socialservices')) {
         $this->errorCollection->add(array(new Error(Loc::getMessage('DISK_BOX_HANDLER_ERROR_NOT_INSTALLED_SOCSERV'), self::ERROR_NOT_INSTALLED_SOCSERV)));
         return false;
     }
     $boxOAuth = new \CSocServBoxAuth($this->userId);
     //this bug. SocServ fill entityOAuth in method getUrl.....
     $boxOAuth->getUrl('modal');
     $this->accessToken = $boxOAuth->getStorageToken();
     return $this;
 }