2016-05-26 20 views
0

コンテンツを表示するための基本フィードを取得しようとしています:socialfeed.js何も表示されていません。socialfeed.js何も表示されていますがエラーはありません

HERESにフルコード:

<!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"> 
</head> 

<body> 

    <div class="social-feed-container"></div> 






    <!-- jQuery --> 
    <script type="text/javascript" src="http://code.jquery.com/jquery-latest.min.js"></script> 
    <!-- Codebird.js - required for TWITTER --> 
    <script src="bower_components/codebird-js/codebird.js"></script> 
    <!-- doT.js for rendering templates --> 
    <script src="bower_components/doT/doT.min.js"></script> 
    <!-- Moment.js for showing "time ago" and/or "date"--> 
    <script src="bower_components/moment/min/moment.min.js"></script> 
    <!-- Moment Locale to format the date to your language (eg. italian lang)--> 
    <script src="bower_components/moment/locale/it.js"></script> 
    <!-- Social-feed js --> 
    <script src="js/jquery.socialfeed.js"></script> 

    <script> 
     $(document).ready(function(){ 

      $('.social-feed-container').socialfeed({ 
       twitter:{ 
       accounts: ['@jquery'],      //Array: Specify a list of accounts from which to pull tweets 
       limit: 2,         //Integer: max number of tweets to load 
       consumer_key: 'qzRXgkI7enflNJH1lWFvujT2P',   //String: consumer key. make sure to have your app read-only 
       consumer_secret: '8e7E7gHuTwyDHw9lGQFO73FcUwz9YozT37lEvZulMq8FXaPl8O',//String: consumer secret key. make sure to have your app read-only 
      }, 

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

</body> 

</html> 

任意のアイデアなぜですか?それは私が次のようでした動作させるために

答えて

1

1)コンソールで実行します:

git clone https://github.com/pavelk2/social-feed/ 
nano index1.html 

2)あなたの例からコードを入力します(変更がない)

3)ウェブサーバーを実行してください 4)Webサーバーから/index1.html(私の場合はhttp://localhost/Open-source/TroubleShootingSF/social-feed/index1.html)に移動し、以下を参照してください:The screenshot of Social-Feed working

関連する問題