• 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.

Microsoft To-Do (wunderlist replacement?)

Scheduled Pinned Locked Moved Unsolved Requests
45 Posts 17 Posters 22.3k Views 19 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.
  • M Offline
    mherke
    last edited by mherke Apr 3, 2020, 6:44 PM Apr 3, 2020, 6:43 PM

    i followed the README.MD on github step by step and now i got it running :) i tried a few weeks ago several times without success and was pretty close to give up.

    thanks an kind regards!

    1 Reply Last reply Reply Quote 0
    • W Offline
      wazzu @geoffroff
      last edited by Apr 22, 2020, 12:58 PM

      @geoffroff
      Hi,
      I had the same problem and I also had a shorter ID than the example. And of course, the status stay on “Loading tasks” for ever.
      Finally, to solve this and get the full length link, I’ve done the following :

      • create a share link from the list and open it
      • click on “Sign in to join list”
      • on next windows, click on “open”
        I finally have an error “List not found” but in the url is the correct ID which is working as ListID, e.g :
        https://to-do.live.com/tasks/AQMkADAwATMwNAItYmQyZS0wNnYxLTAwAi0wMAoALgAAAwyBXwAxHLZDhD1s2yT7wLoBAIZRCieiy1tMpuO70ZBr_R8AA3lr_WoAAAA=

      Hope it helps,
      Cheers,

      G 1 Reply Last reply Apr 27, 2020, 11:03 AM Reply Quote 1
      • Z Offline
        zolabus
        last edited by Apr 24, 2020, 11:32 PM

        HI on the refresh token I have this error

        curl: (6) Could not resolve host:
        {“error”:“invalid_request”,“error_description”:“AADSTS900144: The request body must contain the following parameter: ‘grant_type’.\r\nTrace ID: c89030f5-7596-4716-b56b-baafdc670100\r\nCorrelation ID: 3c6c0d5a-8928-47f9-8916-30fb1a369a8e\r\nTimestamp: 2020-04-24 23:29:45Z”,“error_codes”:[900144],“timestamp”:“2020-04-24 23:29:45Z”,“trace_id”:“c89030f5-7596-4716-b56b-baafdc670100”,“correlation_id”:“3c6c0d5a-8928-47f9-8916-30fb1a369a8e”,“error_uri”:“https://login.microsoftonline.com/error?code=900144”}curl: (6) Could not resolve host:
        curl: (6) Could not resolve host: application
        curl: (6) Could not resolve host:
        ‘client_id’ is not recognized as an internal or external command,
        operable program or batch file.
        ‘scope’ is not recognized as an internal or external command,
        operable program or batch file.
        ‘redirect_uri’ is not recognized as an internal or external command,
        operable program or batch file.
        ‘client_secret’ is not recognized as an internal or external command,
        operable program or batch file.

        T 1 Reply Last reply May 4, 2020, 11:29 AM Reply Quote 0
        • G Offline
          geoffroff @wazzu
          last edited by Apr 27, 2020, 11:03 AM

          @wazzu Excellent worked a treat… ToDo didn’t like the link (List not Found) but when it returned to screen the list had the long ID. I amended the config file and worked like a charm… Thanks G

          1 Reply Last reply Reply Quote 0
          • T Offline
            thobach @andyyy
            last edited by May 4, 2020, 11:27 AM

            @andyyy The call seems to be missing some parameters, please check the full command line from https://github.com/thobach/MMM-MicrosoftToDo/blob/master/README.MD, thanks!

            1 Reply Last reply Reply Quote 0
            • T Offline
              thobach @zolabus
              last edited by May 4, 2020, 11:29 AM

              @zolabus It seems you faced the same issue as in https://github.com/thobach/MMM-MicrosoftToDo/issues/18. I updated the instructions in https://github.com/thobach/MMM-MicrosoftToDo/blob/master/README.MD#refresh-token-generation-refresh-token to be more Windows friendly, e.g. all in a single line and using double quotes. Could you please try it again with the updated instructions? Thanks!

              1 Reply Last reply Reply Quote 0
              • S Offline
                smoysauce
                last edited by May 4, 2020, 1:08 PM

                @thobach: Do you have recommendations to get the due date to show? I have tried to add element.dueDateTime.dateTime in the MMM-MicrosoftToDo.js like I have in the past, but now the module won’t show with that that. And no matter how I try to format it with moment it still doesn’t like it. I tried it with the simple element.id to see if that would show and it does show the todo ID. Thoughts? I know I am missing something simple. Thanks!

                L 1 Reply Last reply May 4, 2020, 1:51 PM Reply Quote 0
                • L Offline
                  lavolp3 Module Developer @smoysauce
                  last edited by lavolp3 May 4, 2020, 1:52 PM May 4, 2020, 1:51 PM

                  @smoysauce if your element does not have a dueDateTime (null) this could lead to an error (cannot get property of undefined).

                  Maybe something like this?

                  if (element.dueDateTime) {
                    var dueDate = moment(element.dueDateTime.dateTime).format("LL");
                  }
                  

                  How to troubleshoot modules
                  MMM-soccer v2, MMM-AVStock

                  S 2 Replies Last reply May 4, 2020, 3:11 PM Reply Quote 0
                  • S Offline
                    smoysauce @lavolp3
                    last edited by May 4, 2020, 3:11 PM

                    @lavolp3 Oh good call-out! I tried your example as well as a few other tweaks but it doesn’t seem to like it when I add that snippet in. I don’t know why it’s being so weird. I’ll keep toying around with it, but any other thoughts would be appreciated!

                    1 Reply Last reply Reply Quote 0
                    • S Offline
                      smoysauce @lavolp3
                      last edited by May 4, 2020, 8:58 PM

                      @lavolp3 said in Microsoft To-Do (wunderlist replacement?):

                      if (element.dueDateTime) {
                      var dueDate = moment(element.dueDateTime.dateTime).format(“LL”);
                      }

                      So after some tinkering, I figured out that the node.js was not pulling in the due date so I removed the ‘select’ filter so the call URL has '/tasks?$top='

                      After that, I was able to add moment(new Date(element.dueDateTime.dateTime)).format("ddd MMM DD") to the output string and got the date to show. But for the life of me, I cannot get the var or if statements to work. If I try to use either the module doesn’t load. I have tried them in all different spots and it just doesn’t like it.

                      L 1 Reply Last reply May 4, 2020, 9:38 PM Reply Quote 0
                      • 1
                      • 2
                      • 3
                      • 4
                      • 5
                      • 4 / 5
                      • 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