我正在使用Facebook Connect API从我的网页连接到FB,共享指定的链接,然后通过提醒消息感谢他们。我缺少的是能够获取海报的用户名并将其保存在我的数据库中。这样做的原因是因为我正在使用它来进入每个分享抽奖链接的人,所以我需要跟踪谁在做这件事。
这是我到目前为止所做的:
<html>
<head>
<title>Facebook Share Page</title>
</head>
<body>
<div id="fb-root"></div>
<script>
window.fbAsyncInit = function() {
FB.init({
appId : 'REMOVED-FOR-SECURITY',
status : true,
cookie : true,
xfbml : true
});
FB.ui(
{
method: 'feed',
name: 'I\'ve Got Kids!',
link: 'http://ivegotkids.com',
picture: 'http://ivegotkids.com/wp-content/themes/thepink/images/logo.png',
caption: 'Parents Supporting Parents',
description: 'I just registered at I\'ve Got Kids, a unique support site. From pregnancy to grandparenthood, there\'s something for everyone. I\'m sure you\'ll find something on IGKs to interest you! Click the link and register for free.'
},
function(response) {
if (response && response.post_id) {
alert('Post was published.');
} else {
FB.api('/me', function(response) {
alert(response.name +', Thank you for sharing. You will now be entered into our prize draw for a free lifetime membership.');
});
}
}
);
};
(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>
</body>
</html>
我已经在最后一步中切换了警报,仅用于测试目的,因为我不想在我测试时将一些东西发布到我的墙上一百次,因此消息当前仅在帖子被取消时输出而不是发送它。
我现在需要做的是抓住海报的用户名并将其保存在我的数据库中。我可以通过使用FB.API调用来获取用户名,就像我最后在警报中所做的那样,但我只是不知道如何将它传递给我的数据库。
任何帮助将不胜感激。
谢谢!
答案 0 :(得分:1)
因为您正在使用javascript收集数据,所以您需要使用AJAX调用来保存数据。一种方法是创建可以保存数据的页面,并让您的javascript将数据发布到该文件。
在我的博客上查看我的AJAX帖子,看看我经常这样做。 http://sullivan.net/blog/tag/ajax/