0

是否可以在多个 facebook 页面上获取喜欢的数量并将其显示在网页上。

例如,如果我的网站上有四个不同的页面,用于学校比赛中的每个团队。

在红队页面上,我只希望用户能够喜欢红页,但我想显示其他团队有多少喜欢。

我已经查看了文档,但似乎无法找到执行此操作的方法。有人能在这里指出我正确的方向吗?

<table>
<tbody>
    <tr>
        <th>Team</th>
        <th>Number of Votes</th>
    </tr>
    <tr>
        <td>Red Team</td>
        <td>
            <span>100 <!--Display number of likes from http://www.facebook.com/redteam --></span>
            <span class="btn-fblike">
                <fb:like href="http%3a%2f%2fwww.facebook.com%2fredteampage" layout="standard" colorscheme="dark" width="320" height="25"/>
            </span>
        </td>
    </tr>
    <tr>
        <td>Blue Team</td>
        <td>
            <span>80<!--Display number of likes from http://www.facebook.com/blueteam --></span>
        </td>
    </tr>
    <tr>
        <td>Green Team</td>
        <td>
            <span>60 <!--Display number of likes from http://www.facebook.com/greenteam --></span>
        </td>
    </tr>
</tbody>

4

1 回答 1

0

一些进一步的调查发现,最好的方法是使用Facebook 查询语言

于 2012-06-12T21:36:04.517 回答