Read the statement by Michael Teeuw here.
MMM-Wunderlist: Invalid namespace Error
-
I am unable to get the Wunderlist module to successfully render my list items. I am able to successfully curl the API with my token and client id - my config matches those settings.
The only error I can see standing out is the "MMM-Wunderlist,‘Invalid namespace’ " error I see in the network traffic back to the socket. I updated node to v7 and socket.io to make sure I was running the latest of each.
Any help would be appreciated. Thanks.
-
‘Invalid namespace’ is logged to the console?
-
Correct. When viewing the socket traffic in the Network tab. I’ve also stepped through the JS on the client side and confirmed nothing is in the array.
My config:
{ module: 'MMM-Wunderlist', position: 'top_left', // This can be any of the regions. Best results in left or right regions. header: 'Home', // This is optional config: { // See 'Configuration options' for more information. accessToken: 'token', clientID: 'client_id', maximumEntries: 60, interval: 60, lists: [ "Home" ], fade: false } },
-
Successful curl:
However, on the client side when it is checking for ToDos, nothing comes through:
Obviously there will be subsequent I/O with the socket but I’m assuming if nothing returns here then any of the other requests will follow suit.
Is there a specific spot in the server side code I should focus on?