Read the statement by Michael Teeuw here.
[MMM-TweetsByTimelineOrList] - A module for the Magic Mirror to display tweets from a user's timeline or list.
-
Why doesn’t work? only black screen =(
can someone help me?
{ module: 'MMM-TweetsByTimelineOrList', position: 'top_right', config: { consumer_key: 'xxx', consumer_secret: 'xxx', access_token_key: 'xxx', access_token_secret: 'xxx', screenName: 'S-Bahn Berlin', listToShow: 'TIMELINE', }
-
There is a
},
missing at the end, I guess your config.js is now “broken” -
sorry bad copy. i have this
{ module: 'MMM-TweetsByTimelineOrList', position: 'top_right', config: { consumer_key: 'xxx', consumer_secret: 'xxx', access_token_key: 'xxx', access_token_secret: 'xxx', screenName: 'S-Bahn Berlin', listToShow: 'TIMELINE', } },
-
And you’re sure it’s working if you remove this module from the config?
Also, the screenName field looks wrong, there should be no dashes or spaces. The screenName is not the same as the “display name”. Put in there whatever comes as part of the twitter.com/XXXXXX part of the URL.
-
ok, please help a big noob =(
i want this tweets https://twitter.com/SBahnBerlin
the keys and so on are correct.
where are my mistakes?{ module: 'MMM-TweetsByTimelineOrList', position: 'top_right', config: { consumer_key: 'xxx', consumer_secret: 'xxx', access_token_key: 'xxx', access_token_secret: 'xxx', screenName: 'SBahnBerlin', listToShow: 'screename', } },
-
You’re close, just change the listToShow field to “TIMELINE” and it should work.
-
Thank you very much my Hero!
-
Oh man
sometimes I see tweets
sometimes not
https://twitter.com/SBahnBerlin tweets pretty much but I see maximum 1
I despair = ( -
Try adding these config options:
excludeTweetsWithQuotes: false, excludeMediaTweets: false, excludeLinkTweets: false, maxTweetsPerUser: 0, maxTweetAgeMins: 7000,
-
How can I install this module?