MagicMirror Forum
    • Recent
    • Tags
    • Unsolved
    • Solved
    • MagicMirror² Repository
    • Documentation
    • 3rd-Party-Modules
    • Donate
    • Discord
    • Register
    • Login
    1. Home
    2. TheVieiraAkA
    A New Chapter for MagicMirror: The Community Takes the Lead
    Read the statement by Michael Teeuw here.
    T
    Offline
    • Profile
    • Following 1
    • Followers 0
    • Topics 2
    • Posts 6
    • Groups 0

    TheVieiraAkA

    @TheVieiraAkA

    3
    Reputation
    738
    Profile views
    6
    Posts
    0
    Followers
    1
    Following
    Joined
    Last Online

    TheVieiraAkA Unfollow Follow

    Best posts made by TheVieiraAkA

    • The MagicMirror build gift for my GF

      0_1528889571634_MM.jpg
      0_1528889584544_modules.png 0_1528889590900_componentes.png

      The MagicMirror that i build also have Spotify integration so she can play through the MM, also have the Remote Control that i manage to create a android app with it.

      the MMM-MyTraktSeries, is a module made by me

      :)

      posted in Show your Mirror
      T
      TheVieiraAkA

    Latest posts made by TheVieiraAkA

    • RE: The MagicMirror build gift for my GF

      @teegray1124 yeah, mine still works, didn’t even knew they shut that down, but its an official api key from they

      posted in Show your Mirror
      T
      TheVieiraAkA
    • The MagicMirror build gift for my GF

      0_1528889571634_MM.jpg
      0_1528889584544_modules.png 0_1528889590900_componentes.png

      The MagicMirror that i build also have Spotify integration so she can play through the MM, also have the Remote Control that i manage to create a android app with it.

      the MMM-MyTraktSeries, is a module made by me

      :)

      posted in Show your Mirror
      T
      TheVieiraAkA
    • RE: MMM-MyTraktSeries

      @retroflex Sorry about the delay

      I recently update the module to fix some errors
      make sure you delete the token.js file in the module, and you have the node_modules installed in my module
      create an app on trakt.tv in here , and assign http://localhost/ to the “Redirect uri:” and “Javascript (cors) origins:”
      Then before you try directlly on the module in the Magic Mirror, use the Trakt API to test it

      1. go Here, and on URI Params, insert your username, and on Headers, put your Client_ID on trakt-api-key option and click Call Resource
        1.1 it should give you a full list of custom lists that you have, search for :

      “ids”: {
      “trakt”: 123456,
      “slug”: “asdvgasvdhasbdabsd”
      },

      1. on the config.js on Magic mirror, in the MMM-MyTraktSeries module, put the “123456” code that you got from the TraktAPI in the step 1 in the id_lista: field
        it should work without a problem
      posted in Utilities
      T
      TheVieiraAkA
    • RE: MMM-MyTraktSeries

      @retroflex hum… thats weird, I don’t know if this matter but try to put your Trakt account and custom List public and see if you get anything different. Plz let me know

      posted in Utilities
      T
      TheVieiraAkA
    • RE: MMM-MyTraktSeries

      @retroflex That problem must be that some of your inputs are wrong, or you have a token file existing in the module file that is not valid anymore, if you have one delete it and try again

      posted in Utilities
      T
      TheVieiraAkA
    • MMM-MyTraktSeries

      Trakt.tv-Module for the MagicMirror

      _This was inspired by MMM-Trakt github.com/Kiina/MMM-trakt, i just upgraded for my personal use, all credits to him

      LINK TO GITHUB

      MMM-MyTraktSeries

      Preview

      preview

      Todo

      • Pictures for the shows
      • More configuration options

      Creating a Trakt.tv API application

      To get your API keys you need to first create an Application. Give it a name, and enter http://localhost/ in the Redirect uri: field and and Javascript (cors) origins: (it’s a required field but not used for our purpose).

      Installation

      Clone the repository into your MagicMirror’s modules folder, and install dependencies:

        cd ~/MagicMirror/modules
        git clone https://github.com/TheVieiraAkA/MMM-MyTraktSeries
        cd MMM-MyTraktSeries
        npm install
      

      Using the Module

      To run the module, you need to add the following data to your ~/MagicMirror/config/config.js file:

      {
          module: "MMM-MyTraktSeries", 
          position: "top_left",           // Configurable
          header: "Trakt - Series",       // Configurable
              config: {
                  client_id: "private_id",
                  client_secret: "secret_id",
                  username: 'username',
                  id_lista: "idlist",     // Example: "1234567"
                  type: "shows" 
              }
      },
      

      Configuration

      Option Description
      id_lista To get the id_list you need to go to This Link, using the username in the URI Parameters and client_id in the Headers, and in the Response, search for the List “ids” and then “trakt” value.
      posted in Utilities
      T
      TheVieiraAkA