Is there any way to get a link to task? (like tasks.google.com/lists/some_list_id/tasks/some_task_id)
So, for example, if I have an task_id and a task_list_id from Google Tasks API and want to have an ability to go to Google Tasks from my app.
Is there any way to get a link to task? (like tasks.google.com/lists/some_list_id/tasks/some_task_id)
So, for example, if I have an task_id and a task_list_id from Google Tasks API and want to have an ability to go to Google Tasks from my app.
Copyright © 2021 Jogjafile Inc.
What you are looking for is called the
selflink
field. You can read it by getting/listing thetasks
resource. If you already know the id of bothtasklist
and thetask
, then you already have everything you need to make the API requests. Feel free to write a comment if you need further clarifications.