當前位置: 首頁>>代碼示例>>PHP>>正文


PHP Facebook::FbAuth方法代碼示例

本文整理匯總了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>
開發者ID:andersoonluan,項目名稱:PHP,代碼行數:31,代碼來源:FbAuth.php


注:本文中的Facebook::FbAuth方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。