@tidus5 said in Wunderlist won't display entries:
maybe that can help you
same error
Perhaps I just don’t understand it… ;)
But: at first, I did create my first keys with the PI’s browser, meaning I did not have any login in this browser yet. But i did created a new pair of keys, after I cleared the cache and stuff:
https://developer.wunderlist.com/apps/new:
- NAME: Magic Mirror
- DESCRIPTION: beautiful mirror on the wall
- APP URL: https://a.wunderlist.com/api/v1/lists
- AUTH CALLBACK URL: http://localhost:8080
after that, I get two Keys:
- CLIENT ID: 20 characters
- CLIENT SECRET: 60 characters
Those key I fill in in my config:
{
module: 'MMM-Wunderlist',
position: 'top_left', // This can be any of the regions. Best results in left or right regions.
header: 'Einkaufslisten', // This is optional
config: {
accessToken: 'CLIENT SECRET',
clientID: 'CLIENT ID',
lists: ['inbox'],
interval: '10',
fade: true
// See 'Configuration options' for more information.
}
},
but: I don’t get any information out of wunderlist. I don’t get an error in the console, but here’s the full console, if that helps:
pi@MagicMirror:~/MagicMirror $ DISPLAY=:0 npm start
magicmirror@2.0.0 start /home/pi/MagicMirror
electron js/electron.js
Loading config …
Loading module helpers …
Initializing new module helper …
No helper found for module: alert.
No helper found for module: clock.
Initializing new module helper …
Initializing new module helper …
No helper found for module: compliments.
No helper found for module: MMM-Globe.
Initializing new module helper …
No helper found for module: MMM-Callmonitor-Current-Call.
No helper found for module: currentweather.
No helper found for module: weatherforecast.
Initializing new module helper …
Initializing new module helper …
No helper found for module: trainconnections.
All module helpers loaded.
Starting server op port 8080 …
Server started …
Connecting socket for: MMM-PIR-Sensor
Staring module helper: MMM-PIR-Sensor
Connecting socket for: calendar
Starting node helper for: calendar
Connecting socket for: MMM-Wunderlist
Connecting socket for: MMM-FRITZ-Box-Callmonitor
Starting module: MMM-FRITZ-Box-Callmonitor
Connecting socket for: MMM-DWD-WarnWeather
MMM-DWD-WarnWeather helper started…
Connecting socket for: newsfeed
Starting module: newsfeed
Sockets connected & modules started …
Launching application.
[2016-12-28 16:23:10] [MMM-PIR] Watching on GPIO #23 …
Create new calendar fetcher for url: http://calendar.google.com/calendar/ical/xxx%40group.calendar.google.com/private-xxx/basic.ics - Interval: 300000
Received config for MMM-FRITZ-Box-Callmonitor
MMM-FRITZ-Box-Callmonitor is waiting for incoming calls.
Starting access to FRITZ!Box…
Create new news fetcher for url: http://rss.sueddeutsche.de/rss/Topthemen - Interval: 300000
Create new calendar fetcher for url: http://calendar.google.com/calendar/ical/xxx/private-xxx/basic.ics - Interval: 300000
Access to FRITZ!Box finished.
[2016-12-28 16:23:34] [MMM-PIR] Motion detected
[2016-12-28 16:23:34] [MMM-PIR] Not turning monitor ON, its already ON
[2016-12-28 16:23:37] [MMM-PIR] Motion no longer detected
[2016-12-28 16:23:37] [MMM-PIR] Turning Screen OFF in 120 seconds
[2016-12-28 16:23:37] [MMM-PIR] Motion detected
[2016-12-28 16:23:37] [MMM-PIR] Not turning monitor ON, its already ON
Thanks for help!