在Facebook中集成独立的php应用程序

时间:2011-08-15 18:40:51

标签: php facebook

我创建了一个小应用程序,基本上是一个测验应用程序(我即将在免费的网络托管网站上推出)。我希望将其与Facebook整合。但主要有两个问题。

  1. 我希望应用程序仅由我创建的特定组(它是一个封闭组)的成员的FB用户使用。

  2. 一旦测验结束,最终得分应该在组墙中发布。

  3. PS:通过整合,我的意思是,他们只能在使用Facebook注册时开始测试。 欢迎任何其他想法。

2 个答案:

答案 0 :(得分:0)

使用Facebook Connect API可以实现您需要处理的所有内容(包括但不限于您所解释的具体要求)。这是非常全面的,我无法解释你将如何在这个答案中做到这一切。这是一个很好的起点:

http://developers.facebook.com/docs/reference/api/

答案 1 :(得分:0)

您需要做很多事情。假设您正在使用FB JS SDK,则需要使用以下内容...

  • 通过FB.login
  • 请求publish_stream和user_groups扩展权限
  • 通过FB.api发布到组墙,例如...... FB.api('/ GROUP_ID / feed','post',{message:'yay someone someone the quiz'},function(response){alert (回应);});

使用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 -->