anydo todoist
Created at 2024-05-07 Updated at 2024-11-07 - 2 min. read
Recently, todoist has removed its support from the google home. It’s is only available to google assistant on android. This has brought me into middle of crisis. As I have a google home that was linked to todoist service. To solve this issue I figured out that there is already any.do that is available for integration with google home. Issue was there was no official support for the API in any.do. Somehow I was able to find out that there is a unofficial library that is available for any.do
So I wrote a small node script which actually runs on every 10 mins and check outs that do I have any new any.do task. If yes, then it moves it to todoist with a specific tag to inbox and then deletes it from anydo.
Below is the code
1 | const Api = require('anydo-api'); |
Happy coding!!