MagicMirror Forum
    • Recent
    • Tags
    • Unsolved
    • Solved
    • MagicMirror² Repository
    • Documentation
    • 3rd-Party-Modules
    • Donate
    • Discord
    • Register
    • Login
    A New Chapter for MagicMirror: The Community Takes the Lead
    Read the statement by Michael Teeuw here.

    Twitter feed

    Scheduled Pinned Locked Moved Troubleshooting
    21 Posts 10 Posters 13.1k Views 10 Watching
    Loading More Posts
    • Oldest to Newest
    • Newest to Oldest
    • Most Votes
    Reply
    • Reply as topic
    Log in to reply
    This topic has been deleted. Only users with topic management privileges can see it.
    • MitchfarinoM Offline
      Mitchfarino Module Developer
      last edited by

      Post your config so people can check it

      1 Reply Last reply Reply Quote 0
      • bheplerB Offline
        bhepler Module Developer
        last edited by

        Sorry for the delay. Here’s the relevant portion of my config:

        {
             module: 'twitControl',
             position: 'middle_left',
                  config: {
                       maxNumTweets: 3,
                       consumer_key: '[redacted]',
                       consumer_secret: '[redacted]',
                       access_token_key: '[redacted]',
                       access_token_secret: '[redacted]'
                       }
        },
        
        1 Reply Last reply Reply Quote 0
        • D Offline
          deadherring
          last edited by

          Did anyone ever get the Twitter module working?

          1 Reply Last reply Reply Quote 0
          • bheplerB Offline
            bhepler Module Developer
            last edited by

            Negative. I have, however, made some progress. Just FYI - If you attempt to position a module into a segment that doesn’t actually exist, you will receive an error of cannot read property 'appendChild' of undefined. This actually means “The position ‘center_left’ doesn’t actually exist, jerk.”

            Having fixed this, I now see the title “Twitter Feed” on my mirror. It does not, however, actually display any tweets. Still… progress.

            1 Reply Last reply Reply Quote 0
            • G Offline
              gshimself
              last edited by

              Got any updates on this problem? I was about to use twitcontrol on my mirror but get same problem as above. Can only see the Title, but no feeds.

              1 Reply Last reply Reply Quote 0
              • enith2478E Offline
                enith2478
                last edited by

                I converted the the desired twitter feed to RSS using https://twitrss.me/

                mediathreatM 1 Reply Last reply Reply Quote 0
                • mediathreatM Offline
                  mediathreat @enith2478
                  last edited by

                  @enith2478 does this give you a static or a dynamic feed from twitter?

                  1 Reply Last reply Reply Quote 0
                  • MaxPowerM Offline
                    MaxPower
                    last edited by

                    Hi, does anybody has had any issues with TwitControl recently? My module stopped working, anything changed with API codes?

                    S 1 Reply Last reply Reply Quote 0
                    • S Offline
                      StrIIker @MaxPower
                      last edited by

                      @maxpower said in Twitter feed:

                      Hi, does anybody has had any issues with TwitControl recently? My module stopped working, anything changed with API codes?

                      It’s possible that the recent changes at Twitter with regard to their API has caused some issues although these changes I believe went into effect in August…

                      https://9to5mac.com/2018/08/07/twitter-api-change-tweetbot-twitterrific/

                      MaxPowerM 1 Reply Last reply Reply Quote 0
                      • MaxPowerM Offline
                        MaxPower @StrIIker
                        last edited by

                        @striiker probably around that time module stopped working. Not sure what to do next (

                        1 Reply Last reply Reply Quote 0
                        • MaxPowerM Offline
                          MaxPower
                          last edited by

                          Hey guys! Does anyone has thier twitter feed on the mirror? What module you are using?

                          C 1 Reply Last reply Reply Quote 0
                          • C Offline
                            chassain 0 @MaxPower
                            last edited by

                            @MaxPower hello

                            i m working with https://github.com/ulrichwisser/MMM-Widget2 and https://publish.twitter.com/# to embed the code…easy to integrate

                            1 Reply Last reply Reply Quote 0
                            • MaxPowerM Offline
                              MaxPower
                              last edited by

                              @chassain-0 Thank you! I will try to do the same!

                              1 Reply Last reply Reply Quote 0
                              • MaxPowerM Offline
                                MaxPower
                                last edited by

                                @chassain-0 sorry, quick question, do I just copy and paste the code line from the https://publish.twitter.com/# and enter it in to the config control widget, under the code? I get a syntax error under this line.

                                C 1 Reply Last reply Reply Quote 0
                                • C Offline
                                  chassain 0 @MaxPower
                                  last edited by

                                  @MaxPower just past the code line like this :

                                  		{
                                    			module: "MMM-Widget1",  //ok tweet hyeres
                                  			disabled: false,
                                  			position: "left",
                                    			config: {
                                  				refreshInterval: 1000*60*60,
                                  				code: `<a class="twitter-timeline" href="https://twitter.com/villedhyeres?ref_src=twsrc%5Etfw">Tweets by villedhyeres</a> <script async src="https://platform.twitter.com/widgets.js" charset="utf-8"></script> `, // https://publish.twitter.com/
                                   				iframeStyle: {
                                  				width: "700px",
                                          				height: "820px",
                                       					},
                                    				}
                                  		},
                                  
                                  K 1 Reply Last reply Reply Quote 0
                                  • MaxPowerM Offline
                                    MaxPower
                                    last edited by

                                    @chassain-0 Thank you! I will try it!

                                    1 Reply Last reply Reply Quote 1
                                    • K Offline
                                      kasperb @chassain 0
                                      last edited by

                                      @chassain-0 said in Twitter feed:

                                        		code: `<a href="https://twitter.com/villedhyeres?ref_src=twsrc%5Etfw">Tweets by villedhyeres</a>  `, // https://publish.twitter.com/
                                      

                                      Hi - did you have any other dependencies configured prior to adding this to your config? I just tried this (after installing the MMM-Widget2 app), but nothing is being displayed on the screen. My objective is to display the CNN breaking news feed from twitter.

                                      C 1 Reply Last reply Reply Quote 0
                                      • C Offline
                                        chassain 0 @kasperb
                                        last edited by sdetweil

                                        @kasperb

                                        {
                                          			module: "MMM-Widget1",  //ok tweet CNN
                                        			disabled: false,
                                        			position: "left",
                                          			config: {
                                        				refreshInterval: 1000*60*60,
                                        				code: `<a class="twitter-timeline" href="https://twitter.com/CNN?ref_src=twsrc%5Etfw">Tweets by CNN</a> <script async src="https://platform.twitter.com/widgets.js" charset="utf-8"></script>  `, // https://publish.twitter.com/
                                         				iframeStyle: {
                                        				width: "700px",
                                                				height: "820px",
                                             					},
                                          				}
                                        		},
                                        
                                        

                                        looks like this in config MMM Widget2. no try in my magicmirror

                                        1 Reply Last reply Reply Quote 0
                                        • C Offline
                                          chassain 0
                                          last edited by

                                          don’t forget ‘…’ in code

                                          1 Reply Last reply Reply Quote 0

                                          Hello! It looks like you're interested in this conversation, but you don't have an account yet.

                                          Getting fed up of having to scroll through the same posts each visit? When you register for an account, you'll always come back to exactly where you were before, and choose to be notified of new replies (either via email, or push notification). You'll also be able to save bookmarks and upvote posts to show your appreciation to other community members.

                                          With your input, this post could be even better 💗

                                          Register Login
                                          • 1
                                          • 2
                                          • 1 / 2
                                          • First post
                                            Last post
                                          Enjoying MagicMirror? Please consider a donation!
                                          MagicMirror created by Michael Teeuw.
                                          Forum managed by Sam, technical setup by Karsten.
                                          This forum is using NodeBB as its core | Contributors
                                          Contact | Privacy Policy