我正在使用“https://ssl.connect.facebook.com/js/api_lib/v0.4/FeatureLoader.js.php”从我的应用程序连接到 Facebook,现在它不起作用。当我让它 http 它工作正常。这是什么原因?如何使其与https一起使用。facebook是否更改了网址...这是我的代码...
问问题
571 次
1 回答
1
旧的 featureloader JS SDK 已被弃用,我认为它已经被删除 - 如果它仍然有效,您应该立即停止使用它并查看当前的 SDK 和文档以了解如何实现登录。
首先,包含当前 JS SDK的方法是:
<div id="fb-root"></div>
<script>
window.fbAsyncInit = function() {
FB.init({
appId : 'YOUR_APP_ID', // App ID
channelUrl : '//WWW.YOUR_DOMAIN.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>
于 2012-05-31T19:16:33.307 回答