This discussion has been locked. The information referenced herein may be inaccurate due to age, software updates, or external references.
You can no longer post new replies to this discussion. If you have a similar question you can start a new discussion in this forum.

API token expires - how to keep it refreshed?

I need to create API poller for testing connection on an external URL. I use BASIC AUTHENTICATION with username and password to get token which I apply as BEARER TOKEN to connect to bit modified URL and retrieve necessary data. The problem is the token I'm using is valid for 3600 seconds - then I get data I wanted. But when access_token expires I must get new token. 

When getting access_token I'm getting refresh_token as well but I cannot use it to refresh API poller connection. It must be any method to keep API poller working longer then 1 hour, I guess. Any idea how to fix it?

Parents
  • You send a username and password and then receive the token?

    Because you can then use that token in the next call.  This is how we do it for the Microsoft Graph API calls in the Microsoft 365 templates (pretty sure - not at a computer at the moment).

Reply
  • You send a username and password and then receive the token?

    Because you can then use that token in the next call.  This is how we do it for the Microsoft Graph API calls in the Microsoft 365 templates (pretty sure - not at a computer at the moment).

Children