Web アプリケーションに Facebook ログインを実装しようとしています。アプリ ID を取得しました。コードは次のとおりです。` Facebook ログイン ページ
<div id="fb-root"></div>
<script>
window.fbAsyncInit = function() {
FB.init({
appId : '<<App Id>> ', // App ID
channelUrl : '//www. DOMAIN NAME.com/channel.html', // Channel File
status : true, // check login status
cookie : true, // enable cookies to allow the server to access the session
xfbml : true // parse XFBML
});
// Additional initialization code here
};
// Load the SDK Asynchronously
(function(d){
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.js";
ref.parentNode.insertBefore(js, ref);
}(document));
</script><div class="fb-login-button"><a href=" ">Login with Facebook</a></div>
</body>
`。これを実行しようとすると、アプリにエラーが発生します。秘密鍵も取得しましたが、正確にどこに配置すればよいかわかりません。このために css や js などのファイルを配置する必要がありますか??
どんな助けでも大歓迎です..