0

我正在尝试开发一个应用程序,让人们只有在喜欢我的粉丝页面时才可以下载免费赠品。现在我正在使用此代码来触发点赞按钮点击事件

 FB.Event.subscribe('edge.create',function(response) {

      download();// this makes a aaax call to get the download file
});

但是对于已经喜欢我的facebook页面的人来说,如何检测并赠送免费赠品?是否有任何可能的 fql 查询来执行此操作?

4

1 回答 1

0
FB.api("me/likes/page", function(response) 
{
          if ( response.data.length == 1 ) 
         { 
            //has liked

         } else 
         {

             //Not liked
}});

源和下载脚本 - http://www.webtuts.info/webdevelopment/facebook-download-script-2/225/

于 2012-11-08T18:38:42.793 回答