MagicMirror Forum
    • Recent
    • Tags
    • Unsolved
    • Solved
    • MagicMirror² Repository
    • Documentation
    • 3rd-Party-Modules
    • Donate
    • Discord
    • Register
    • Login
    1. Home
    2. TrueSolara
    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 0
    • Posts 2
    • Groups 0

    TrueSolara

    @TrueSolara

    2
    Reputation
    1
    Profile views
    2
    Posts
    0
    Followers
    0
    Following
    Joined
    Last Online
    Location Texas

    TrueSolara Unfollow Follow

    Best posts made by TrueSolara

    • RE: Trello gives a 403 error

      @Neoculture

      Yeah, it looks like a change made by Trello/Atlassian:

      https://developer.atlassian.com/cloud/trello/changelog/#CHANGE-1459

      20 February 2024

      DEPRECATION NOTICE

      Trello API will no longer accept GET request with data in body

      Rollout completed March 12th 2024

      Trello’s API will no longer permit supplying a body with a GET request. Previous behavior in our API ignored the payloads provided with GET requests but these requests will now be blocked with a 403 response from our content delivery network.

      To resolve issues resulting from this change ensure all GET requests to Trello’s API are sent without a payload.


      I commented on the issue raised for MMM-Trello, and the author isn’t able to keep up with the development anymore. I’m going to see if I can pick it up, but no promises…

      posted in Troubleshooting
      T
      TrueSolara
    • RE: Trello gives a 403 error

      @Neoculture

      If you’re willing to edit code, a fix was posted on the MMM-Trello github issue:

      Edit this file: ~/MagicMirror/modules/MMM-Trello/node_modules/node-trello/lib/node-trello.js
      Replace

        else {
          options.json = this.addAuthArgs(this.parseQuery(uri, args));
        }
      
      

      with

        else {
          options.json = true; // tells request to return json
          // options.json = this.addAuthArgs(this.parseQuery(uri, args));
        }
      

      I’ve confirmed it worked for me. :)

      posted in Troubleshooting
      T
      TrueSolara

    Latest posts made by TrueSolara

    • RE: Trello gives a 403 error

      @Neoculture

      If you’re willing to edit code, a fix was posted on the MMM-Trello github issue:

      Edit this file: ~/MagicMirror/modules/MMM-Trello/node_modules/node-trello/lib/node-trello.js
      Replace

        else {
          options.json = this.addAuthArgs(this.parseQuery(uri, args));
        }
      
      

      with

        else {
          options.json = true; // tells request to return json
          // options.json = this.addAuthArgs(this.parseQuery(uri, args));
        }
      

      I’ve confirmed it worked for me. :)

      posted in Troubleshooting
      T
      TrueSolara
    • RE: Trello gives a 403 error

      @Neoculture

      Yeah, it looks like a change made by Trello/Atlassian:

      https://developer.atlassian.com/cloud/trello/changelog/#CHANGE-1459

      20 February 2024

      DEPRECATION NOTICE

      Trello API will no longer accept GET request with data in body

      Rollout completed March 12th 2024

      Trello’s API will no longer permit supplying a body with a GET request. Previous behavior in our API ignored the payloads provided with GET requests but these requests will now be blocked with a 403 response from our content delivery network.

      To resolve issues resulting from this change ensure all GET requests to Trello’s API are sent without a payload.


      I commented on the issue raised for MMM-Trello, and the author isn’t able to keep up with the development anymore. I’m going to see if I can pick it up, but no promises…

      posted in Troubleshooting
      T
      TrueSolara