Importing tasks from Todoist

I’m trying to set up the Todoist migration tool according to the instructions here but am getting the same {"error":"redirect_uri_not_configured"} error.

Here’s my config.yml:

  todoist:
    # Wheter to enable the todoist migrator or not
    enable: true
    # The client id, required for making requests to the todoist api
    # You need to register your vikunja instance at https://developer.todoist.com/appconsole.html to get this
    clientid: *************************
    # The client secret, also required for making requests to the todoist api
    clientsecret: *************************
    # The url where clients are redirected after they authorized Vikunja to access their todoist items.
    # This needs to match the url you entered when registering your Vikunja instance at todoist.
    # This is usually the frontend url where the frontend then makes a request to /migration/todoist/migrate
    # with the code obtained from the todoist api.
    # Note that the vikunja frontend expects this to be /migrate/todoist
    redirecturl: https://tasks.example.com/migrate/todoist

https://tasks.example.com is my frontend url, and it’s also the app service url I’ve set up in the Todoist app console. I also tried setting https://tasks.example.com/migrate/todoist as the app service url in the Todoist console.

Is there something I’m doing wrong here? It feels like I’ve followed the instructions correctly.

I’m shooting in the dark here, but perhaps the import could be failing because Todoist updated their API about 12 days ago:

I’m not sure what method Vikunja is using to communicate with Todoist…

UPDATE:
I got past the error. Needed to update the Oauth redirect field in the todoist dashboard. I was adding the redirect url in the “App service url” instead.

The import still didn’t work though. It just took me back to the “get started” page.