$.getScript('http://connect.facebook.net/en_US/all.js', function(){
FB.init({
appId : 'my app id',
status : true, // check login status
cookie : true, // enable cookies to allow the server to access the session
xfbml : true // parse XFBML
});
});
これにより、エラーが発生します。One or more of the given URLs is not allowed by the App's settings. It must match the Website URL or Canvas URL, or the domain must be a subdomain of one of the App's domains.
私の目標は、ローカルのhtmlファイルにアクセストークンを生成することです。Facebookの私のアプリ設定では、「localhost」または同様のものは許可されません。
これはまったく可能ですか、それともローカルWebサーバーが必要ですか?