I have a task list in a google chat space that i would like to pull and render on a web page.
The tasks api is pretty explicit that this is unsupported " Method: tasks.list
Returns all tasks in the specified task list. Does not return assigned tasks be default (from Docs, Chat Spaces)."
Nothing in the chat API seems to allow me to pull these tasks either (The content of the tasks does not appear but I can see messages stating that tasks are created/completed)
My main goal is to build a dashboard webpage for my family that shows our various calendars and shared task lists that we currently use google chat rooms for (not looking to migrate to different task management tool)
Is there anything I am missing or some undocumented API that will let me get a task list from a chat space?
I've tried pulling the message histories from these chats, the event histories, every api i can think of and I can see messages like this:
{
"name": "spaces/[redacted]/spaceEvents/[redacted]",
"eventTime": "2025-02-07T22:53:57.590927Z",
"eventType": "google.workspace.chat.message.v1.created",
"messageCreatedEventData": {
"message": {
"name": "spaces/[redacted]/messages/[redacted]",
"sender": {
"name": "users/[redacted]",
"type": "HUMAN"
},
"createTime": "2025-02-07T22:53:57.590927Z",
"text": "Created a task (via Tasks)",
"thread": {
"name": "spaces/[redacted]/threads/[redacted]"
},
"space": {
"name": "spaces/[redacted]"
},
"argumentText": "Created a task (via Tasks)",
"formattedText": "Created a task (via Tasks)"
}
}
},
But nothing shows me the content of the task.
I've tried a lot of weird workarounds to pull the task list directly from the "/[...long url pulled from the network tab where the chat request gets sent out]" but I cant load them in an iframe because google doesn't let me and when I try to do any weird proxy pulls all I'm able to render is a google logon that wont let me log in.
I'm out of ideas. anyone gotten past this?
发布者:admin,转转请注明出处:http://www.yc00.com/questions/1744888192a4599244.html
评论列表(0条)