- JWT Authentication Flow: Once user consent is obtained, I can generate a new JWT and use it to create an access token. According to the documentation, I can generate a new JWT if the access token expires without needing further user interference. Is this correct?
- Account Base URI: I need to get data for only one account. The documentation mentions that the base URI contains
{server}
. Is this base URI fixed or does it change over time for that specific account? Essentially, can I take the base URI directly from the user to avoid making a userInfo call to retrieve it? I mean get it from use and hard code in my code. is it Fine ???