I need to know how to refresh the refresh_token once it has expired. I receive this message when the refresh_token has expired:
I don’t want my users to see this message when they use my application.
According to the documentation, when the refresh_token expires, do I have to request a new access_token? Does this mean that the user of my application will need to delete and then restart the authentication process? This doesn’t seem very practical to me. What can I do?
For your information, I am developing my application in PHP.
unfortunately refresh tokens are designed to expire if not used for a while so the user needs to continue using the app to refresh them. maybe you can consider adding a “re-authorize” button to the ui that appears when the refresh token is expired ? , the user just has to re-authorize the pipedrive tokens to get new ones but doesn’t necessarily need to uninstall the app
Could you please provide me with a solution to check if the refresh_token has expired? And how can I display a button to reauthorize in my JSON Panel in PHP?
Because I can’t manage to edit the error message :
Hey Romain, my initial thought was to add it as a button in the panels actions menu but after thinking about it some more it might not be the best option as it would display for both non authorized users and already authorized users. You brought up an interesting case though and we’ll look into improving/adding error handling for expired tokens in the UI. in the meantime maybe you can alternatively look into the panel error handling section and see if it can help solve the issue you’re facing
Hello @youssef_s I was able to solve my issue by prompting the user to reinstall the application via a button based on the error returned by Pipedrive, and it works successfully.
I’m sharing my experience in hopes of helping others who probably had the same problem as me.
Hey @Romain, can you share some details on how you’ve implemented the logic behind the button since I am facing a similiar issue right now? I wonder if it is just a link to the Marketplace App or includes more steps behind the scenes that make reinstalling the app more user friendly.