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;
 }
Example #2
0
 public function __construct($appID = false, $appSecret = false, $code = false)
 {
     if ($appID === false) {
         $appID = trim(CSocServBoxAuth::GetOption("box_appid"));
     }
     if ($appSecret === false) {
         $appSecret = trim(CSocServBoxAuth::GetOption("box_appsecret"));
     }
     parent::__construct($appID, $appSecret, $code);
 }