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

    torafadora

    @torafadora

    0
    Reputation
    3
    Profile views
    7
    Posts
    0
    Followers
    0
    Following
    Joined
    Last Online

    torafadora Unfollow Follow

    Latest posts made by torafadora

    • RE: Google Tasks 'client_secret' of 'this.credentials.installed' as it is undefined.

      @sdetweil I got it working with that one, why can’t it work with the original, this one is too plain

      posted in Troubleshooting
      T
      torafadora
    • RE: Google Tasks 'client_secret' of 'this.credentials.installed' as it is undefined.

      @sdetweil Don’t need to put this in but I have worked with the google console with another module I built from scratch for reading and automatically classifying emails and that works no problem. I also know that my credentials, token and client_secret are correct because I am able to get a json response from a URL.

      posted in Troubleshooting
      T
      torafadora
    • RE: Google Tasks 'client_secret' of 'this.credentials.installed' as it is undefined.

      @sdetweil https://github.com/spydersoft-consulting/MMM-GoogleTasks

      This is the project I am working from. I don’t understand what you are trying to say.

      posted in Troubleshooting
      T
      torafadora
    • RE: Google Tasks 'client_secret' of 'this.credentials.installed' as it is undefined.

      @sdetweil
      I made a new desktop application download the credentials.json ran the authenticate.mjs to generate the token.json file. But I am getting the same error as before.
      [ERROR] [MMM-GoogleTasks] - Error retrieving Google Tasks: TypeError: Cannot destructure property ‘client_secret’ of ‘this.credentials.installed’ as it is undefined.

      here is the client_secret.json-

      {
        "installed": {
          "client_id": "x",
          "project_id": "xxx",
          "auth_uri": "https://accounts.google.com/o/oauth2/auth",
          "token_uri": "https://oauth2.googleapis.com/token",
          "auth_provider_x509_cert_url": "https://www.googleapis.com/oauth2/v1/certs",
          "client_secret": "xxx",
          "redirect_uris": ["http://localhost"]
        }
      }
      
      [
        {
          "account": "me",
          "token": {
            "access_token": "xxx",
            "refresh_token": "xxx",
            "scope": "https://www.googleapis.com/auth/tasks.readonly",
            "token_type": "Bearer",
            "refresh_token_expires_in": 604799,
            "expiry_date": 1740275388678
          }
        }
      ]
      
      posted in Troubleshooting
      T
      torafadora
    • RE: Google Tasks 'client_secret' of 'this.credentials.installed' as it is undefined.

      @sdetweil What do I need to do? I already have the token.json that was generated from the credentials.json, wouldn’t the secret come from the credentials.json?

      posted in Troubleshooting
      T
      torafadora
    • RE: Google Tasks 'client_secret' of 'this.credentials.installed' as it is undefined.

      @sdetweil So what would I need to do? I have my credentials.json and token.json. I thought it would pull the secret from the credentials.json.

      posted in Troubleshooting
      T
      torafadora
    • Google Tasks 'client_secret' of 'this.credentials.installed' as it is undefined.

      I am struggling with Google Tasks Module, I’ve been doing it for a few ours. I am able to ping the api in terminal but not in the module itself

      {
                  module: 'MMM-GoogleTasks',
                  header: "Google Tasks",
                  position: "top_left",
                  config: {
                      credentialsPath: "C:/Users/CLT4/MagicMirror/modules/MMM-GoogleTasks/credentials.json",
                      tokenPath: "C:/Users/CLT4/MagicMirror/modules/MMM-GoogleTasks/token.json",
                      accounts: [
                          {
                              name: "me",
                              includedLists: ["MDEwNTc1NjI1MjY1ODA3NzEwNTM6MDow"]
                          },
                      ]
      
                  }
      

      [2025-02-22 17:24:52.101] [ERROR] [MMM-GoogleTasks] - Error retrieving Google Tasks: TypeError: Cannot destructure property ‘client_secret’ of ‘this.credentials.installed’ as it is undefined.
      any help would be awesome

      posted in Troubleshooting
      T
      torafadora