0
我想用twitter API來獲取我的流星APP上的「twit」模塊NPM的最後一條推文。流星和推特API
我的代碼,但我沒有得到任何數據:
var Twit = require('twit');
var T = new Twit({
consumer_key: 'xxx', // API key
consumer_secret: 'xxx', // API secret
access_token: 'xxx',
access_token_secret: 'xxx'
});
T.get('search/tweets', { q: 'hello since:2011-11-11', count: 100 }, function(err, data, response) {
alert(data);
});
在Twitter上Developper我的訪問級別:
應用程序設置:讀寫 訪問令牌:讀,寫
待辦事項你有想法?
謝謝!
你得到了什麼錯誤? –
您使用了錯誤的端點 –
我錯了:網絡錯誤 –