我正在尝试集成 Facebook 登录插件,该插件显示使用同一应用程序的朋友的个人资料图片。为此,我尝试了以下代码,
<html>
<head>
<title>My Facebook Login Page</title>
</head>
<body>
<div id="fb-root"></div>
<script>
window.fbAsyncInit = function() {
FB.init({
appId : '***', // App ID
channelUrl : 'http://www.***.in/', // Channel File
status : true, // check login status
cookie : true, // enable cookies to allow the server to access the session
xfbml : true // parse XFBML
});
};
// 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 = "js/all.js";
ref.parentNode.insertBefore(js, ref);
}(document));
</script>
<div class="fb-login-button" data-show-faces="true" data-width="500" data-max-rows="1"></div> </div>
</body>
</html>
这段代码工作正常。登录时,它会显示使用同一应用程序的朋友的个人资料图片。单击每张照片(朋友的个人资料图片)时,它会分别导航到他们的 Facebook 页面。但我的要求是,在单击照片时,它应该重定向到不同的 url。是否可以?
请帮帮我,
谢谢你。