If I understand correctly, OAuth users need to reauthenticate every 30 days within connected apps that use the API. Any chance of getting this extended? It’s kind of annoying for users.
hi @nhe when you authenticate you are given an auth token and a refresh token. You can use the refresh token to continuously refresh your app’s auth token so the user doesn’t have to sign in again after 14 days. Just FYI that the refresh token will change after 7 days once you use it (it will be the same for the first 7 days if you try to refresh it).
1 Like
Ah ok, so I can use the current refresh token to get a new refresh token, and as long as I’m making a new request 7-14 days after I got the current refresh token, the user wouldn’t be re-prompted to authenticate?