cbrooker / MMM-Todoist

This is an extension for the MagicMirror2 platform. It will display your Todoist todos on your MagicMirror.
MIT License
151 stars 56 forks source link

Lists stuck on Loading!!! #127

Open gfmccutc77 opened 3 months ago

gfmccutc77 commented 3 months ago

So I an new to MM and coding. However, I have went through every forum and fix that I could find for this issue and nothing is working for me. My config file looks like:

{ module: 'MMM-Todoist', position: 'top_left', // This can be any of the regions. Best results in left or right regions. header: 'Dakota', // This is optional config: { // See 'Configuration options' for more information. accessToken: "Mine from ToDoist developers section", apiVersion: "v9", apiBase: "https://todoist.com/API", todoistEndpoint: "sync", maximumEntries: 15, updateInterval: 10601000, fade: false, lists: [ 2338484591 ], labels: [ "MagicMirror", "Important" ], sortType: "*", MaxTitleLength: 100, wrapEvents: false, showProject: false
}

I also saw that the node_helper.js file needed to be updated for Version 9 updates, so I have changed the node_helper.js file to view as follows:

headers: { "content-type": "application/x-www-form-urlencoded", "cache-control": "no-cache" "Authorization": "Bearer" + self.config.accessToken }, form: { token: self.config.accessToken, sync_token: "*", resource_types: self.config.todoistResourceType }

Can anyone tell me what direction I need to go with this? My goal is to have a project displayed on the left side for my daughter and on the right side for my son for their chore lists.

gfmccutc77 commented 3 months ago

I just looked at the logs for this and it is returning "Todoist API request status=403" Does anyone know how to fix this??