是否可以在多个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>