jw
Beginner
When will the Bearer Token change?
I have saved the Bearer Token in my test environment and notice that it is no longer valid after a few days.
Is this token changed automatically?
When does it expire?
Why does it become invalid, I don’t know this from other remote APIs.
Share
Dominik Amann
If you request a token, you will get the following response:
“{“access_token”:”e1764ac7-ac68-XYZ”,”token_type”:”bearer”,”expires_in”:43191,”scope”:”read write”}”
the field “expires_in” descripes how long the token is valid. After this time (seconds) you have to request a new one.
This will be done because of security reasons.