• Recent
  • Tags
  • Unsolved
  • Solved
  • MagicMirror² Repository
  • Documentation
  • 3rd-Party-Modules
  • Donate
  • Discord
  • Register
  • Login
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.

MMM-News

Scheduled Pinned Locked Moved Utilities
55 Posts 15 Posters 35.8k Views 14 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.
  • ? Offline
    A Former User
    last edited by Oct 17, 2018, 3:06 PM

    I know there is already newsfeed and MMM-PNews, but I made this for my own purpose and now share with you.

    MMM-News

    MagicMirror module - displaying news articles with News.org API V2

    Features

    • Aggregate headlines from multiple sources at once.
    • Country specific, Category specific, Keyword specific news could be aggregated.
    • Touchable (Clickable) UI supported
    • Can open article page in iFrame and scrollable by touch or autoScroll
    • Controllable by notification
    • Controllable by MMM-TelegramBot
    • Customizable with Template

    Screenshot

    • type:horizontal, touchable:true
      Screenshot

    • type:vertical, touchable:false
      Screenshot

    • detail page is opened
      Screenshot

    • Control by Telegram
      Screenshot

    Details

    [card:eouia/MMM-News]

    C J 2 Replies Last reply Oct 18, 2018, 1:46 AM Reply Quote 6
    • C Offline
      cowboysdude Module Developer @Guest
      last edited by Oct 18, 2018, 1:46 AM

      @sean That is FANTASTIC!! Nice job!

      1 Reply Last reply Reply Quote 0
      • J Offline
        justjim1220 Module Developer @Guest
        last edited by Oct 18, 2018, 2:32 AM

        @sean Nice Work Sean!!

        "Life's Too Short To Dance With Ugly People"
        Jim Hallock - 1995

        1 Reply Last reply Reply Quote 0
        • ? Offline
          A Former User
          last edited by Mar 21, 2019, 10:53 AM

          UPDATED

          • Added : Reader mode. article details without adv. or any other annoying things.

          Screenshot

          1 Reply Last reply Reply Quote 1
          • M Offline
            mrdenmark
            last edited by Nov 16, 2019, 2:13 AM

            does anyone know if BBC is a compatible source for this module?
            it works as advertised with all other news sources i’m interested in but from the bbc it receives nothing.
            if for some reason the bbc can’t be used what other british sources of news/sport are people using?

            ? 1 Reply Last reply Nov 17, 2019, 2:36 PM Reply Quote 0
            • ? Offline
              A Former User @mrdenmark
              last edited by Nov 17, 2019, 2:36 PM

              @mrdenmark
              0_1574001354168_d39a5dca-ac3b-4958-a1b8-a4775e9e74cd-image.png
              use bbc-news as source.

              1 Reply Last reply Reply Quote 0
              • D Offline
                dankerthrone
                last edited by Nov 29, 2019, 4:11 PM

                Hey, I’m getting this error message:

                [NEWS] Error :  https://newsapi.org/v2/top-headlines?pageSize=20&apiKey=XXX result.code:Required parameters are missing. Please set any of the following parameters and try again: sources, q, language, country, category.
                
                

                although I think have that configured correctly:

                {
                			module: "MMM-News",
                			position: "bottom_right",
                			config: {
                					apiKey : "XXX",
                					type: "vertical",
                					query : [
                						  {
                							language: "de"
                						  }
                						  ],
                					items: 20,
                					timeFormat: "relative",
                					endpoint :  "https://newsapi.org/v2/top-headlines",
                					scanInterval: 1000*60*10, // This will be automatically recalculated by number of queries to avoid query quota limit. This could be minimum interval.
                					templateFile: "template.html"
                					
                					}
                		},
                

                Any help is greatly appreciated :)

                ? 1 Reply Last reply Nov 30, 2019, 2:32 PM Reply Quote 0
                • ? Offline
                  A Former User @dankerthrone
                  last edited by Nov 30, 2019, 2:32 PM

                  @dankerthrone
                  change language to country

                  1 Reply Last reply Reply Quote 0
                  • U Offline
                    uros76
                    last edited by May 22, 2020, 11:01 AM

                    Hi. Is it possible to have two different queries of news, each displayed in a separate horizontal position?

                    My magicmirror projects: https://forum.magicmirror.builders/post/79889, https://forum.magicmirror.builders/post/93241 and https://forum.magicmirror.builders/post/94586

                    C 1 Reply Last reply May 23, 2020, 12:12 PM Reply Quote 0
                    • C Offline
                      cowboysdude Module Developer @uros76
                      last edited by cowboysdude May 23, 2020, 12:15 PM May 23, 2020, 12:12 PM

                      @uros76 sure it is… see picture below…

                      news.PNG

                      Just using the stock newsfeed in MM…[I DETEST CNN but needed a quick example]
                      You can then use them in the same region or put one each in different regions.
                      The example is both using bottom_bar but I did try and put one in bottom_bar the other in middle_center and still works… ;)

                      [Just remember IF you copy the below code and put it in your config.js it will give you an error… you have to change the quotes “” or ‘’ because they do NOT copy correctly].

                      {
                      			module: 'newsfeed',
                      			position: 'bottom_bar',
                      			config: {
                      				feeds: [
                      					{
                      						title: "CNN",
                      						url: "http://rss.cnn.com/rss/cnn_latest.rss"
                      					}
                      				],
                      				showSourceTitle: true,
                      				showPublishDate: true
                      			}
                      		},
                      		{
                      			module: 'newsfeed',
                      			position: 'bottom_bar',
                      			config: {
                      				feeds: [
                      					{
                      						title: "New York Times",
                      						url: "http://www.nytimes.com/services/xml/rss/nyt/HomePage.xml"
                      					}
                      				],
                      				showSourceTitle: true,
                      				showPublishDate: true
                      			}
                      		},
                      
                      1 Reply Last reply Reply Quote 0
                      • 1
                      • 2
                      • 3
                      • 4
                      • 5
                      • 6
                      • 1 / 6
                      • 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