/** * 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_DROPBOX_HANDLER_ERROR_NOT_INSTALLED_SOCSERV'), self::ERROR_NOT_INSTALLED_SOCSERV))); return false; } $dropboxOAuth = new \CSocServDropboxAuth($this->userId); //this bug. SocServ fill entityOAuth in method getUrl..... $dropboxOAuth->getUrl('modal'); $this->accessToken = $dropboxOAuth->getStorageToken(); return $this; }
public function __construct($appID = false, $appSecret = false, $code = false) { if ($appID === false) { $appID = trim(CSocServDropboxAuth::GetOption("dropbox_appid")); } if ($appSecret === false) { $appSecret = trim(CSocServDropboxAuth::GetOption("dropbox_appsecret")); } parent::__construct($appID, $appSecret, $code); }