Я хочу включить виджет, в который пользователь добавит URL-адрес фан-страницы Facebook, и он сможет получать все фиды или последние фиды с определенной страницы, и он будет отображаться в поле, похожем на фэн-бокс Facebook.,Но это должно быть.Как мне это сделать. Я смог сделать это только для одной конкретной страницы Facebook.Это должно быть добавлено динамически.Таким образом, каждый пользователь может ввести свою ссылку на фан-страницу Facebook, и он сможет ее получить.
Большое спасибо
<!DOCTYPE HTML>
Фид Facebook
<script src="jquery.ui.core.js"></script>
<script src="jquery.ui.widget.js"></script>
<script type="text/javascript">
$(document).ready(function(){
function fbFetch(){
//Set Url of JSON data from the facebook graph api. make sure callback is set with a '?' to overcome the cross domain problems with JSON
var Baseurl = "http://graph.facebook.com/";
var search= $("fburl").val();
//Use jQuery getJSON method to fetch the data from the url and then create our unordered list with the relevant data.
$.getJSON(Baseurl + search + "feed?limit=5&callback=?",function(json){
var html = "<ul>";
//loop through and within data array's retrieve the message variable.
$.each(json.data,function(i,fb){
html += "<li>" + fb.message + "</li>";
});
html += "</ul>";
//A little animation once fetched
$('.facebookfeed').animate({opacity:0}, 500, function(){
$('.facebookfeed').html(html);
});
$('.facebookfeed').animate({opacity:1}, 500);
});
});
});
</script>
</head>
<body>
<input type="text" value="facebookurl" name="facebook_feeds" id="fburl"/>
<input type="submit" id="submit" />
<div class="facebookfeed">
</div>
</body>
</html>