Hi,
Is there anyway to retrieve workflow & activity ID from task token - What is a Temporal Activity? | Temporal Platform Documentation?
Use case -
I am using asynchronous activity completion flow for long running activity to complete, when I receive a message on my messaging, I use async activity completion client to complete the activity.
When I receive the message later than timeout, my activity times out as expected, but I want to log the delayed message so I can report the delay issue. Currently, I am creating my own base 64 token of workflow and activity id and sending that to the downstream service and in turn, they send the same workflow and activity ID back to me which I am using to complete and logging. I wanted to instead use the task token way of doing things, the only issue I am facing with it is, task token being a binary blob, it is hard for me to link it back to the timed out activity.