私はFacebookのjavascriptクライアント側のアプリ認証に問題があります。以下のコードは、Appが承認されていないときに期待通りに機能し、App authorizationポップアップが表示されます。同じコードがcodeignigterで実行されると、認証ダイアログが表示されません。Facebookのクライアント側でのアプリ認証
// 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));
// Init the SDK upon load
window.fbAsyncInit = function() {
FB.init({
appId : '169550646480230', // App ID
channelUrl : '//'+window.location.hostname+'/channel', // Path to your Channel File
status : true, // check login status
cookie : true, // enable cookies to allow the server to access the session
xfbml : true // parse XFBML
});
サーバーのサイドコードなどのHTMLを投稿してください。 –