pavelk2 / social-feed

JavaScript plugin that shows a user feed from the most popular social networks
http://pavelk2.github.io/social-feed-example/
MIT License
963 stars 304 forks source link

Facebook Setup Issue #257

Closed lowpez closed 7 years ago

lowpez commented 7 years ago

Hello Guys, I'm feeling already stupid : P . I been trying to setup this, with no luck. My result, only display one result from feed, even if i set the LIMIT to 12. Any help, i'll be great. Thanks!

PS:Can this plug-in support groups?

<!doctype html>
<html>
<head>
    <meta charset="utf-8" />
   <!-- Social-feed css -->
<link href="css/jquery.socialfeed.css" rel="stylesheet" type="text/css">
<!-- font-awesome for social network icons -->
<link href="http://netdna.bootstrapcdn.com/font-awesome/4.0.3/css/font-awesome.css" rel="stylesheet">   <!-- jQuery -->
<script src="js/jquery.js"></script>
<!-- Codebird.js - required for TWITTER -->
<script src="js/codebird.js"></script>
<!-- doT.js for rendering templates -->
<script src="js/doT.min.js"></script>
<!-- Moment.js for showing "time ago" and/or "date"-->
<script src="js/moment.min.js"></script>
<!-- Moment Locale to format the date to your language (eg. italian lang)-->
<script src="js/it.js"></script>
<!-- Social-feed js -->
<script src="js/jquery.socialfeed.js"></script> 
</head>
<body>
<div class="social-feed-container"></div>

<script>
    $(document).ready(function(){
        $('.social-feed-container').socialfeed({
            // INSTAGRAM
             facebook:{
        accounts: ['@samsung'],  //Array: Specify a list of accounts from which to pull wall posts
        limit: 12,                                   //Integer: max number of posts to load
        access_token: '123667974863007|BXoqQA8YNUoUL3HeBhsb_UZTGNc'  //String: "APP_ID|APP_SECRET"
    },

            // GENERAL SETTINGS
            length:400 ,
show_media:true,                                     //Integer: For posts with text longer than this length, show an ellipsis.
        });
    });
</script>
</body>
</html>

Thanks!

HartLarsson commented 7 years ago

@samsug exist on facebook? i've not find that business page. Try for example @apple that exist

lowpez commented 7 years ago

@HartLarsson, Thanks for that helpfull and quick reply. The fix for me, was using momment+locales.. BTW, @apple doesn't bring me any result, so i change it to @nokia worked great, same with @samsung.

Again, Thanks!