フェイスブックのログインシステムを自分のウェブサイトに統合しようと必死になって 3 日ほど経った後、私は惨めに失敗したという結論に達しました。JavaScript SDK API 呼び出しで混乱した PHP SDK を作成しただけで、結果は期待どおりで、機能しませんでした。
私はGoogleで検索し、他の人の質問、チュートリアル、説明に対するstackoverflowの回答を検索しましたが、今では自分が敗北したことを認めています.
この仕事のための良いチュートリアルを教えてもらえますか? それとも、彼らのライブラリの詳細を教えてもらえますか?
これが閉鎖されないことを願っています。
編集: これは Facebook のログイン システムを使用するための推奨される方法ですか?
編集2:
FB.init({
appId : '<?php echo $core->appId; ?>', // App ID from the App Dashboard
channelUrl : '//romeo.no-ip.org/94seconds/channel.html', // Channel File for x-domain communication
status : true, // check the login status upon init?
cookie : true, // set sessions cookies to allow your server to access the session?
xfbml : true // parse XFBML tags on this page?
});
このコードは生成しますFB.getLoginStatus() called before calling FB.init().
私のページは次のようになります。
<!DOCTYPE html>
<html>
<head>
<script src="../node_modules/socket.io/node_modules/socket.io-client/dist/socket.io.js"></script>
</head>
<body>
<div id="fb-root"></div>
<script>
window.fbAsyncInit = function() {
FB.init({
appId : '<?php echo $core->appId; ?>', // App ID from the App Dashboard
channelUrl : '//romeo.no-ip.org/94seconds/channel.html', // Channel File for x-domain communication
status : true, // check the login status upon init?
cookie : true, // set sessions cookies to allow your server to access the session?
xfbml : true // parse XFBML tags on this page?
});
};
// Load the SDK's source Asynchronously
// Note that the debug version is being actively developed and might
// contain some type checks that are overly strict.
// Please report such bugs using the bugs tool.
(function(d, debug){
var js, id = 'facebook-jssdk', ref = d.getElementsByTagName('script')[0];
if (d.getElementById(id)) {return;}
js = d.createElement('script'); js.id = id; js.async = true;
js.src = "//connect.facebook.net/en_US/all" + (debug ? "/debug" : "") + ".js";
ref.parentNode.insertBefore(js, ref);
}(document, /*debug*/ false));
</script>
</body>
</html>
編集 3: 気にしないでください、私はいくつかのコードを置き忘れたため、壁をパンチするのに 3 ~ 4 時間費やしたことに気付きました。私はエラーを失いました。:D ありがとうございます。