我想使用Gravity Forms提交一個WordPress提交表單,其中訪問者看到一個「與Facebook登錄」按鈕。Facebook的登錄鏈接自動刷新到Facebook的用戶配置文件的鏈接和圖片
一旦訪問者登錄並授予權限,該部分將刷新以顯示Facebook用戶個人資料鏈接和圖片,讓訪問者知道他們正在使用Facebook個人資料進行提交。
我已經複製了代碼,但我需要一些幫助來完成它。
<div id="fb-root"></div>
<script>
window.fbAsyncInit = function() {
FB.init({
appId : 'XXXXXXXXXXXXXXXXX', // App ID
channelUrl : '//www.MY-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'; if (d.getElementById(id)) {return;}
js = d.createElement('script'); js.id = id; js.async = true;
js.src = "//connect.facebook.net/en_US/all.js";
d.getElementsByTagName('head')[0].appendChild(js);
}(document));
</script>
<script>
FB.api('/me', function(user) {
if (user) {
var image = document.getElementById('image');
image.src = 'http://graph.facebook.com/' + user.id + '/picture';
var name = document.getElementById('name');
name.innerHTML = user.name
}
});
</script>
現在,我把得到在那裏我可以顯示「登錄按鈕」,然後顯示用戶個人資料鏈接中有人登錄後的部分?