本文整理汇总了PHP中Facebook\FacebookRedirectLoginHelper::__construct方法的典型用法代码示例。如果您正苦于以下问题:PHP FacebookRedirectLoginHelper::__construct方法的具体用法?PHP FacebookRedirectLoginHelper::__construct怎么用?PHP FacebookRedirectLoginHelper::__construct使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Facebook\FacebookRedirectLoginHelper
的用法示例。
在下文中一共展示了FacebookRedirectLoginHelper::__construct方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: __construct
public function __construct($redirectUrl, $appId = null, $appSecret = null)
{
parent::__construct($redirectUrl, $appId, $appSecret);
$this->rlAppId = '';
$this->rlUserHash = '';
$this->rlAccount = null;
$this->rlStorageProvaider = null;
}
示例2: __construct
/**
* Constructs a RedirectLoginHelper for a given appId and redirectUrl.
*
* @param string $redirectUrl The URL Facebook should redirect users to
* after login
* @param string $appId The application id
* @param string $appSecret The application secret
* @throws (\LoginException)
*/
public function __construct($redirectUrl, $appId = null, $appSecret = null)
{
if (!empty($appId)) {
$this->appId = $appId;
} elseif ($appId = Config::get('api-foundation::fb_app_id')) {
$this->appId = $appId;
} else {
throw new \LogicException('Facebook APP ID not set.');
}
if (!empty($appSecret)) {
$this->appSecret = $appSecret;
} elseif ($appSecret = Config::get('api-foundation::fb_app_secret')) {
$this->appSecret = $appSecret;
} else {
throw new \LogicException('Facebook APP SECRET not set.');
}
FacebookSession::setDefaultApplication($this->appId, $this->appSecret);
parent::__construct($redirectUrl, $this->appId, $this->appSecret);
}