我创建了一个小应用程序,基本上是一个测验应用程序(我即将在免费的网络托管网站上推出)。我希望将其与Facebook整合。但主要有两个问题。
我希望应用程序仅由我创建的特定组(它是一个封闭组)的成员的FB用户使用。
一旦测验结束,最终得分应该在组墙中发布。
PS:通过整合,我的意思是,他们只能在使用Facebook注册时开始测试。 欢迎任何其他想法。
答案 0 :(得分:0)
使用Facebook Connect API可以实现您需要处理的所有内容(包括但不限于您所解释的具体要求)。这是非常全面的,我无法解释你将如何在这个答案中做到这一切。这是一个很好的起点:
答案 1 :(得分:0)
您需要做很多事情。假设您正在使用FB JS SDK,则需要使用以下内容...
使用FB JS SDK的部分示例(未检查组检查)...
<a onclick="postToGroupWall()">Post msg to group wall</a>
<script>
window.fbAsyncInit = function()
{
FB.init({
appId : 'APP_ID',
status : true, // check login status
cookie : true, // enable cookies to allow the server to access the session
xfbml : true , // parse XFBML
oauth : true // Enable oauth authentication
});
FB.login(function(response)
{
if (response.authResponse)
{
alert('Logged in!');
// Check if user is in group using opengraph call (/me/groups) via FB.api
// Do that here...
}
else
{
alert('Not logged in - do something');
}
}, { scope : 'publish_stream,user_groups' });
};
window.postToGroupWall = function()
{
var opts = {
message : 'Yay I just completed the quiz',
name : '',
link : 'http://www....',
description : 'Description here',
picture : 'http://domain.com/pic.jpg'
};
FB.api('/GROUP_ID/feed', 'post', opts, function(response)
{
if (!response || response.error)
{
alert('Posting error occured');
}
else
{
alert('Success - Post ID: ' + response.id);
}
});
};
</script>
<!-- FACEBOOK -->
<div id="fb-root"></div>
<script>
(function() {
var e = document.createElement('script');
// replacing with an older version until FB fixes the cancel-login bug
e.src = document.location.protocol + '//connect.facebook.net/en_US/all.js';
//e.src = 'scripts/all.js';
e.async = true;
document.getElementById('fb-root').appendChild(e);
}());
</script>
<!-- END-OF-FACEBOOK -->