Hi!
I am currently modifying one of our applications from password from to JWT. This application uses the Java SDK.
It works but I keep reading about not calling the /auth endpoint too frequently which I assumed transposes into calling authorize() on the rest client with the JWT.
Did I understood that right or are we talking about something else?
As a test I let my application call authorize() more than the documented limit of 5 times and it did not seem to cause any problem so maybe I am misunderstanding something and the limit of 5 times is not for that authorize() call...
Once I call authorize() do I have to do anything to reauthorize the rest client again? The application could stay up for months at a time.
I just want to make sure I call it just the right amount of time, not too frequently but not to the point the app will crash because I have not called it when I should have.
Our application is based on the example that were provided many years ago, using password flow it was calling authorize() for every call...
That being said, there were rarely more than one or two calls per minutes in normal circumstances, this might change...
Thank you and have a nice day!
Nick