Used to track all active access tokens that are requested by anyone within the server to be able to send to external services that can
in turn call back to the GetDataResolver to get data from the server. This is an extra security layer to ensure that tokens are short
lived compared to the system level API key which rotates but less frequently.
Can be used to store any payload to identify who requested the creation of the token, for example Skip might use this to put in a conversation ID to know which conversation a request is coming back for.
Used to track all active access tokens that are requested by anyone within the server to be able to send to external services that can in turn call back to the GetDataResolver to get data from the server. This is an extra security layer to ensure that tokens are short lived compared to the system level API key which rotates but less frequently.