Refresh token issue

I used rest api and using that i got a response like this :
{ [“access_token”]=> “xxxx” [“token_type”]=> “bearer” [“expires_in”]=> 86400 [“refresh_token”]=>“xxxx” [“scope”]=> “full|xxx.infusionsoft.com” }

but how can i use the refresh token to get another access token ? any php example with coding please ?

Using the refresh access token method you will get a similar json record back with new token information.

https://developer.infusionsoft.com/docs/xml-rpc/#authentication-refresh-an-access-token

1 Like