本文整理汇总了PHP中Facebook::FbAuth方法的典型用法代码示例。如果您正苦于以下问题:PHP Facebook::FbAuth方法的具体用法?PHP Facebook::FbAuth怎么用?PHP Facebook::FbAuth使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Facebook
的用法示例。
在下文中一共展示了Facebook::FbAuth方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: Facebook
</title>
<link href="theme/default/bootstrap/css/bootstrap.min.css" rel="stylesheet">
<script src="theme/default/js/jquery.js"></script>
<script src="theme/default/js/javascript.js"></script>
<script src="theme/default/bootstrap/js/bootstrap.min.js"></script>
</head>
<body>
<?php
if (Input::Get("app_id")) {
$fb = new Facebook();
$app_id = Input::Get("app_id");
// check existance of appid gevin in the database
// get app secret
$app_secret = DB::GetInstance()->QueryGet("SELECT app_secret FROM fbapps WHERE appid = ? ", array($app_id));
if ($app_secret->count() == 0) {
echo "\r\n\t\t\t<div class='alerts alert alert-danger'>\r\n\t\t\t<p class='alerttext'>facebook App not found!</p>\r\n\t\t\t</div>";
} else {
try {
$notic = $fb->FbAuth($app_id, $app_secret->first()->app_secret, options::Get("siteurl") . "FbAuth.php?app_id=" . $app_id, Input::Get("oldApi"));
echo "<div class='alerts alert alert-success'>\r\n\t\t\t\t<p class='alerttext'>Successfully authorized <a href='#' onclick='window.opener.location.href = window.opener.location.href;window.close();'>Close this windiw</a>.</p>\r\n\t\t\t\t</div>";
} catch (Exception $ex) {
echo "\r\n\t\t\t\t<div class='alerts alert alert-danger'>\r\n\t\t\t\t<p class='alerttext'>Error : " . $ex->GetMessage() . "</a></p>\r\n\t\t\t\t</div>";
}
}
} else {
echo "\r\n\t\t<div class='alerts alert alert-danger'>\r\n\t\t<p class='alerttext'>Required parameters app_id not supplied.</p>\r\n\t\t</div>";
}
$tempate->footer();
?>
</body>
</html>