Hi,
How to set static access token in CUBA.platform. Is this possible in cuba?
Thanks for advance
Hi,
How to set static access token in CUBA.platform. Is this possible in cuba?
Thanks for advance
Hello @suresh.p
AccessToken is a system level entity that is not intended for manual use. For which purpose you want manage this entity?
Regards,
Daniil.
Hi,
If i use access token every time it’s generate new token.but i need static token.could you tell how to set static token in cuba.
AccessToken is generated for each session and should not be reused.
Could you describe what problem have you met?
We have to give response to client side every time . so, we did not need authentication for every time, So we need static token.
Each authentication request from client to server generates new token that can be reused on client until it is expired.
I suggest you to manage two following application properties:
The cuba.rest.reuseRefreshToken application property is set to true by default that allows to use the same token for new requests.
Regards,
Daniil.
Ok Thanks,I’ll check it.