facebook - Show the number of likes from multiple pages -


is possible number of likes on multiple facebook pages , display on webpage.

for example if had 4 different pages on site each of teams in school competition.

on red teams page want user able red page want show how many likes other teams have.

i have reviewed documentation don't seem able find way this. able point me in right direction here?

<table> <tbody>     <tr>         <th>team</th>         <th>number of votes</th>     </tr>     <tr>         <td>red team</td>         <td>             <span>100 <!--display number of likes 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 http://www.facebook.com/blueteam --></span>         </td>     </tr>     <tr>         <td>green team</td>         <td>             <span>60 <!--display number of likes http://www.facebook.com/greenteam --></span>         </td>     </tr> </tbody> 

some further investigation found best way use facebook query language


Comments

Popular posts from this blog

django - How can I change user group without delete record -

java - Need to add SOAP security token -

java - EclipseLink JPA Object is not a known entity type -