Using the Todoist API to set a due date on the Alexa integration to-do list (with Apps Script)

Updated on Tuesday, December 6, 2022

Todoist Alexa Fix

I love almost everything about Todoist. It's rich enough to scratch all my productivity itches while also being basic enough that I don't spend time gardening my tasks. Also, their Android app is just gorgeous, the exact opposite of Google's ascetic descent into identical lists of black in Material Design.

The one problem is the Alexa integration. You can add tasks to your shopping list or your to do list. The shopping list works great for me. I check it once a week when I do my grocery shopping and everyone knows to just tell Alexa when they need something. The to-do list is a disaster. These go to a separate to-do list project without a due date and I will never ever find them there. Anything else I add will end up in the Inbox with a due date of today so I'm forced to classify and if necessary reschedule it. Which is exactly what I want.

When I say 'Alexa, add x to my to-do list' I want that task to be visible. This integration design flaw could lead to at least one child growing up in an unfamiliar part of town without parents, or worse.

I emailed Todoist and they politely declined to change the way the integration works. After a brief period of steaming I've rolled up my sleeves and fixed it with their API. Which doesn't use OAuth so now I love them even more.

The script is below. Create a new Apps Script project in Google Drive (New and then choose More to find this) and copy in the code. You can get the API token from the bottom of the Integrations section in Todoist settings. Then just click the clock in the Apps Script project and schedule checkForAlexaTasksWithNoDate() to run as often as you need. The script will check the Alexa To-do List project and if anything is in there without a due date it will set it to today to force you to deal with it.

Updated 2022-12-06 21:27:

Todoist have updated their API to v2 (migration guide). There are no breaking changes for this code and so I got it working again by changing v1 to v2 in the API calls. The code above has also been changed to update dates in multiple projects, this is because I started checking for tasks with no due date in the Inbox project as well as Alexa tasks. You can delete the Inbox call if you don't want this behavior (and add additional projects if needed as well).

Add your comment...

More Google Apps Script Projects

(All Code Posts)

(Published to the Fediverse as: Using the Todoist API to set a due date on the Alexa integration to-do list (with Apps Script) #code #appsscript #google #drive #todoist #productivity Script to fix an annoyance with the Todoist Alexa integration where tasks are added without a due date leading them to be overlooked. Requires Google Drive and Todoist. )

Monitor page index status with Google Sheets, Apps Script and the Google Search Console API

Updated on Friday, February 9, 2024

GSC Monitor

Overview

Google just released URL inspection as part of the Search Console API. I check for issues periodically in Search Console but it would be great to just get an email when an issue crops up. The Apps Script project below does just that by monitoring URLs from your sitemap for changes and sending an email whenever anything is detected. The Search Console API has a limit of 2,000 calls per day and Apps Script also imposes a time limit on scripts. The approach I take below assigns a random day of the week to each URL to limit the number checked on each run. Depending on the size of your site you may want to remove this check (or go the other way if you have a large number of URLs to monitor). Follow the steps below to get your own monitoring spreadsheet up and running.

Google Sheet

Create a new spreadsheet in Google Drive and call it anything you want. Rename an empty sheet to 'gsc', this sheet will store the index data. You don't need to make any other changes to this sheet.

Choose Apps Script from the Extensions menu. This will open up the script editor for your spreadsheet. I find that sometimes the editor opens with the wrong account if you're signed into more than one. If that applies to you, check quickly to make sure the right account is selected. With Code.gs selected copy and paste the script below replacing the default function:

There are a few configuration variables to enter at the top. AlertEmail is the email address to notify when index status changes are detected. SitemapUrl is the full URL of your sitemap. The current implementation does not support sitemap index files, this needs to be a regular sitemap containing URLs. SearchConsoleProperty should be the URL of the site to monitor, or sc-domain: followed by the domain for domain properties (for this site sc-domain:ithoughthecamewithyou.com).

Click Project Settings (the cog in the left hand menu of the script editor) and copy the Script ID. Make a note of this for later.

API Console

Next we need to configure the Search Console API in the Google Cloud Platform Console.

  1. Create  a new project (click the drop down to the right of 'Google Cloud Platform Console' and then New Project). Pick any name you like. 
  2. Once the project is created, find APIs and Services in the left hand menu and choose Library.
  3. Search for Search Console, click on the Search Console API and then click Enable. 
  4. A new screen will load, click Credentials in the left hand menu. 
  5. Click Configure Consent Screen and choose the internal type.
  6. Fill in the required fields - application name and contact emails. 
  7. Add the ./auth/webmasters.readonly scope for readonly access to Search Console data.
  8. Once the consent screen is complete click Credentials in the left hand menu again.
  9. Click Create Credentials at the top and choose OAuth Client ID. 
  10. Choose Web Application.
  11. Add https://script.google.com/macros/d/{SCRIPTID}/usercallback to authorized redirect URLs, replacing {SCRIPTID} including the brackets with the Apps Script ID you noted above. 
  12. Make a note of the Project ID.

Complete the Apps Script

Return to the Apps Script project and find the settings page. Set the GCP project to the project ID you noted above. Also on this page check the Show "appsscript.json" manifest file in editor option.

Go to the code editor and open appsscript.json. Add the following line:

"oauthScopes": ["https://www.googleapis.com/auth/script.external_request", "https://www.googleapis.com/auth/webmasters.readonly", "https://www.googleapis.com/auth/spreadsheets.currentonly", "https://www.googleapis.com/auth/script.send_mail"],

Make sure the script is saved and close the script editor window. Reload the spreadsheet. Once the reload completes you should have a Search Console menu at the top of the spreadsheet. Choose Update Data from the Search Console menu. This will run for a few minutes and then populate the 'gsc' sheet with your URL data. See UrlInspectionResult in the API documentation for more information about the meaning of each field. You should also get a lengthy email with a notification for each URL that was inspected. This will continue for the first week and then you'll only get updates for interesting status changes.

Scheduling

Now the project is working, open the script editor again (Apps Script from the Extensions menu) and open Triggers (the clock icon in the left hand menu). Click Add Trigger at the very bottom right of the window. Select runUpdate as the function to run. Change event source to time-driven, and then select day timer and an hour to run the script. Lastly click Save. Your Google Search Console monitor will now run every day, and if the index status of a page changes you'll get an email about it within a week. The spreadsheet will also come in handy for other analysis and reporting.

Troubleshooting

You might need to tweak the script if you start hitting limits. The URL inspection API currently has a 2,000 call / day quota. Apps Script will only run for around 7 mins on a free account and 20 mins if you have Google Workspace. If either of these limits apply you could modify the 'checkDay' logic to use day of the month (or year, or ...) to reduce the number of URLs inspected on each run. If you need to do this remember to update the Check Day column on the 'gsc' sheet as well.

The script assumes that the URLs you want to monitor are in your sitemap. If this is not the case you can add URLs to the sheet directly. As long as they are part of the configured property you will still get results. If you use this method you might want to comment out the updatePagesFromSitemap() call in runUpdate() to save time.

If anything else goes wrong please leave a comment below and I'll do my best to help you.

Updated 2022-02-08 17:40:

Monitor page index status with Google Sheets, Apps Script and the Google Search Console API

After a couple of days I have a full dump of my sitemap from the page index status API. I wrote this script for the alerting possibilities but couldn't resist some analytics once the dataset was complete.

The chart above shows sessions vs days since the last Google Crawl. Pretty stark - Google keeps a close eye on the pages it sends traffic to and not so much on the others.

I set lastmod honestly and there is good news here. I could only find two cases where Google had not crawled the page since the last modified date. So when the sitemap says a page has changed the odds are good that it will get another crack at the index. The two exceptions are unusual posts that are updated hourly and weekly respectively and both have been crawled recently.

The breakdown of index status matches Google Search Console pretty well but I have a handful of pages that are 'Indexed, not submitted in sitemap', even though they are in the sitemap and no such status is shown on Search Console. I don't know if this is a glitch in the index status API or something to do with how the pages were discovered. Some light searching suggests that this message is usually what you would expect it to be.

Lastly, updating the sheet for my site is more bound by script execution time than the API limits. I changed it to run every hour and instead of partitioning by day of week I used a random hour of the day which means I check every URL at least once every 24 hours.

Updated 2022-04-24 10:50:

I just updated the code and post above. I've had occasional issues where updating the sheet failed which caused the next run to go back to the beginning with no saved index status. To reduce the chance of this happening I've added some retry logic and also improved the speed of the sheet load and save functions. I also had a comment on the code that suggested an easier way to handle OAuth and have incorporated this in the new version.

Add your comment...

More Google Apps Script Projects

(All Code Posts)

(Published to the Fediverse as: Monitor page index status with Google Sheets, Apps Script and the Google Search Console API #code #searchconsole #appsscript #google #sheets #drive #seo How to use Apps Script in Google Sheets to automatically monitor index status in Google Search Console and get an email alert if anything changes. )

Timelapse, Week of Jan 31 2022

Updated on Saturday, February 19, 2022

Timelapse, Week of Jan 31 2022

Sun halo over Lake Merced, a container ship entering the bay, the SkyStar ferris wheel in the Golden Gate Park, Farallon Islands, and some nice clouds over the Pacific. Photo is from Lake Merced.

(Previously: Timelapse, Week of Jan 24 2022)

Add your comment...

Related Posts

You Might Also Like

(More Timelapses)

(Published to the Fediverse as: Timelapse, Week of Jan 31 2022 #timelapse #sanfrancisco #goldengateheights #grandview #farallon #merced #ggp #video Timelapse of the week of Jan 31, 2022 including Lake Merced, Farallon Islands and the SkyStar ferris wheel. )

Book reviews for January 2022

The Anomaly: A Novel by Hervé Le Tellier

The Anomaly: A Novel by Hervé Le Tellier

4/5

 

Quantum of Nightmares (Laundry Files Book 11) by Charles Stross

Quantum of Nightmares (Laundry Files Book 11) by Charles Stross

4/5

 

What's Eating the Universe?: And Other Cosmic Questions by Paul C.W. Davies

What's Eating the Universe?: And Other Cosmic Questions by Paul C.W. Davies

4/5

 

This Is What Happened by Mick Herron

This Is What Happened by Mick Herron

3/5

 

The Catch (Slough House, #6.5) by Mick Herron

The Catch (Slough House, #6.5) by Mick Herron

3/5

 

The Marlyebone Drop (Slough House, #5.5) by Mick Herron

The Marlyebone Drop (Slough House, #5.5) by Mick Herron

4/5

 

The List (Slough House, #2.5) by Mick Herron

The List (Slough House, #2.5) by Mick Herron

3/5

 

Add your comment...

Related Posts

You Might Also Like

(All Reviews)

Timelapse, Week of Jan 24 2022

Updated on Saturday, February 19, 2022

Jan 24-30

The Golden Gate from Grand View Park, and then the Outer Sunset from Golden Gate Heights Park.

(Previously: Timelapse, Week of Jan 17 2022)

Add your comment...

Related Posts

You Might Also Like

(More Timelapses)

(Published to the Fediverse as: Timelapse, Week of Jan 24 2022 #timelapse #sanfrancisco #goldengateheights #grandview #video Timelapse of San Francisco from Golden Gate Heights Park and Grand View Park. )

Sunset #8

Updated on Saturday, February 19, 2022

Sunset #8

Light cloud cover streams by as the sun sets over the Pacific, shot from San Francisco. 4K 60fps timelapse.

(Previously: Sunset #7)

Add your comment...

Related Posts

You Might Also Like

(More Timelapses)

(Published to the Fediverse as: Sunset #8 #timelapse #sunset #4k #video 4k 60fps time lapse of sunset over the Pacific shot from San Francisco, California. )

Timelapse, Week of Jan 17 2022

Updated on Saturday, February 19, 2022

Jan 17-23

Three different perspectives of downtown San Francisco. Shot from Twin Peaks (with a great view all the way down Market Street), Mount Davidson (the highest point in the city) and of course Grand View Park.

(Previously: Timelapse, Week of Jan 10)

Add your comment...

Related Posts

You Might Also Like

(More Timelapses)

(Published to the Fediverse as: Timelapse, Week of Jan 17 2022 #timelapse #sanfrancisco #davidson #twinpeaks #grandview #video Timelapse from the week of January 17, 2022 - downtown San Francisco from Twin Peaks, Mount Davidson and Grand View Park. )

Mount Davidson

Updated on Friday, July 7, 2023

Mount Davidson

Mount Davidson

Mount Davidson

Continuing my series of local coronavirus hikes, Mount Davidson is the highest peak in San Francisco and this three mile hike takes you there from West Portal. Take Ulloa to Kensington and then cross Portola on the footbridge. Juanita takes you to one of the Mount Davidson trails and up to the top. You can come back the same way, or follow Kensington all the way over to Taraval.

The cross at the top is a memorial to the Armenian Genocide and while most of Mount Davidson is a San Francisco park the area at the top is owned by the Council of Armenian-American Organizations of Northern California (due to a church/state separation lawsuit). It's a great spot to look (slightly) down on the Twin Peaks set who just think they've reached the top of San Francisco.

(Previously: Mount Davidson 360 4K)

Hike starts at: 37.741614, -122.471306. View in Google Earth.

Add your comment...

Related Posts

You Might Also Like

(Hike Map)

(Published to the Fediverse as: Mount Davidson #hike #sanfrancisco #davidson #coronavirus #map #video Three mile hike from West Portal to the summit of Mount Davidson, the highest peak in San Francisco. )

What is the San Francisco Rent Board Fee?

Updated on Sunday, March 13, 2022

SFRB

I got a Rent Board Fee Annual Notice for the first time this year which says:

"The owner of each residential unit in San Francisco, as specified in Administrative Code Chapter 37A, shall pay annually to the City and County of San Francisco a Residential Rent Stabilization and Arbitration Board fee."

Which sounds like they really want you to pay. They go on to say that from the 2021-2022 tax year the Rent Board has to collect directly from the property owner rather than being bundled on the property tax bill.

This seems crazy. Not that I'm advocating kicking off another recall election but it must be a monumental waste of resources. Suddenly you're sending me letters and wasting my time as well as paying extra credit card / check processing fees all for $59 which is a pretty trivial fraction of my property tax.

It turns out that I don't even need to pay - owner occupied units are exempt. This made me wonder if I have been inadvertently subsidizing the Rent Board for years but as far as I can tell this has never been included with my property taxes. It certainly isn't broken out like other special fees (and San Francisco feels like it needs to let me know that 0.05% of my tax is going toward restoring the bay). You can opt out of the tax on a sumptuous new Rent Board portal, which can't have been cheap to build.

So what gives? I haven't seen any press on this. Please let me know if I missed something. My best guess is that whatever records were used to add the tax to the property bill were thought to be incomplete and so the Rent Board is trying to expand its tax base to all of the undeclared in-law units and casually rented rooms in the city. Less charitably they might be hoping that a lot of property owners pay the new bill without checking the details. Regardless, if we need a Rent Board can it not just be paid for out of city funds instead of wasting trees and time and money on an elaborate separate payment system?

Add your comment...

Related Posts

You Might Also Like

(All Politics Posts)

(Published to the Fediverse as: What is the San Francisco Rent Board Fee? #politics #sanfrancisco The San Francisco Rent Board has sent fee collection notices to all San Francisco households, which you don't need to pay if you are owner occupied. )

Timelapse, Week of Jan 10

Updated on Saturday, February 19, 2022

Jan 10-16

An experiment in creating a timelapse from a week of walking around San Francisco. Not sure how long I'll keep this up for and only managed four sequences this week: three different views from Grand View park (I go there a lot) and one of the penguin sculpture at Lake Merced.

Add your comment...

Related Posts

You Might Also Like

(More Timelapses)

(Published to the Fediverse as: Timelapse, Week of Jan 10 #timelapse #grandview #merced #sanfrancisco #video Timelapse of the week of January 10 to 16, 2022. )